diff --git a/src/write.rs b/src/write.rs index 6bde75ce..fe0074cd 100644 --- a/src/write.rs +++ b/src/write.rs @@ -1055,13 +1055,14 @@ impl ZipWriter { /// same name as a file already in the archive. /// /// The data should be written using the [`Write`] implementation on this [`ZipWriter`] - pub fn start_file( + pub fn start_file( &mut self, name: S, mut options: FileOptions, ) -> ZipResult<()> where - S: Into>, + S: Into> + ToOwned, + SToOwned: Into>, { Self::normalize_options(&mut options); let make_new_self = self.inner.prepare_next_writer( @@ -1190,9 +1191,10 @@ impl ZipWriter { /// Ok(()) /// } /// ``` - pub fn raw_copy_file_rename(&mut self, mut file: ZipFile, name: S) -> ZipResult<()> + pub fn raw_copy_file_rename(&mut self, mut file: ZipFile, name: S) -> ZipResult<()> where - S: Into>, + S: Into> + ToOwned, + SToOwned: Into>, { let mut options = SimpleFileOptions::default() .large_file(file.compressed_size().max(file.size()) > spec::ZIP64_BYTES_THR) @@ -1325,14 +1327,15 @@ impl ZipWriter { /// implementations may materialize a symlink as a regular file, possibly with the /// content incorrectly set to the symlink target. For maximum portability, consider /// storing a regular file instead. - pub fn add_symlink( + pub fn add_symlink( &mut self, name: N, target: T, mut options: FileOptions, ) -> ZipResult<()> where - N: Into>, + N: Into> + ToOwned, + NToOwned: Into>, T: Into>, { if options.permissions.is_none() {