From df8479ac4f11955b49806e8bb50b485fbd757a7b Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 9 May 2024 18:33:41 -0700 Subject: [PATCH] chore: Bug fix: ToOwned requires an explicit type bound --- src/write.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/write.rs b/src/write.rs index b6e3e9e4..ccacbf0f 100644 --- a/src/write.rs +++ b/src/write.rs @@ -724,14 +724,15 @@ impl ZipWriter { } /// Start a new file for with the requested options. - fn start_entry( + fn start_entry( &mut self, name: S, options: FileOptions, raw_values: Option, ) -> ZipResult<()> where - S: Into> + ToOwned, + S: Into> + ToOwned, + SOwned: Into> { self.finish_file()?;