From e4576353f7a9d301727bb8b65f0e73f982e8ac9a Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Mon, 25 May 2015 09:46:08 +0200 Subject: [PATCH] Accept both String and &str in start_file --- src/write.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/write.rs b/src/write.rs index 43a953c8..8aeea4ea 100644 --- a/src/write.rs +++ b/src/write.rs @@ -113,7 +113,8 @@ impl ZipWriter } /// Start a new file for with the requested compression method. - pub fn start_file(&mut self, name: &str, compression: CompressionMethod) -> ZipResult<()> + pub fn start_file(&mut self, name: S, compression: CompressionMethod) -> ZipResult<()> + where S: Into { try!(self.finish_file()); @@ -129,7 +130,7 @@ impl ZipWriter crc32: 0, compressed_size: 0, uncompressed_size: 0, - file_name: name.to_string(), + file_name: name.into(), file_comment: String::new(), header_start: header_start, data_start: 0,