Accept both String and &str in start_file

This commit is contained in:
Mathijs van de Nes 2015-05-25 09:46:08 +02:00
parent 65c98d5495
commit e4576353f7

View file

@ -113,7 +113,8 @@ impl<W: Write+io::Seek> ZipWriter<W>
} }
/// Start a new file for with the requested compression method. /// 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<S>(&mut self, name: S, compression: CompressionMethod) -> ZipResult<()>
where S: Into<String>
{ {
try!(self.finish_file()); try!(self.finish_file());
@ -129,7 +130,7 @@ impl<W: Write+io::Seek> ZipWriter<W>
crc32: 0, crc32: 0,
compressed_size: 0, compressed_size: 0,
uncompressed_size: 0, uncompressed_size: 0,
file_name: name.to_string(), file_name: name.into(),
file_comment: String::new(), file_comment: String::new(),
header_start: header_start, header_start: header_start,
data_start: 0, data_start: 0,