From 124ebfdb029997fff06f3ec36c7182f2e50d7ddb Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sat, 20 Apr 2024 15:14:28 -0700 Subject: [PATCH] Fix Clippy warnings --- src/write.rs | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/src/write.rs b/src/write.rs index 7cbaea89..c6e371e7 100644 --- a/src/write.rs +++ b/src/write.rs @@ -600,9 +600,12 @@ impl ZipWriter { /// This function ensures that the '/' path separator is used and normalizes `.` and `..`. It /// ignores any `..` or Windows drive letter that would produce a path outside the ZIP file's /// root. - pub fn deep_copy_file_from_path, U: AsRef>(&mut self, src_path: T, dest_path: U) -> ZipResult<()> - { - self.deep_copy_file(&*path_to_string(src_path), &*path_to_string(dest_path)) + pub fn deep_copy_file_from_path, U: AsRef>( + &mut self, + src_path: T, + dest_path: U, + ) -> ZipResult<()> { + self.deep_copy_file(&path_to_string(src_path), &path_to_string(dest_path)) } } @@ -1012,7 +1015,11 @@ impl ZipWriter { /// This function ensures that the '/' path separator is used and normalizes `.` and `..`. It /// ignores any `..` or Windows drive letter that would produce a path outside the ZIP file's /// root. - pub fn raw_copy_file_to_path>(&mut self, file: ZipFile, path: P) -> ZipResult<()> { + pub fn raw_copy_file_to_path>( + &mut self, + file: ZipFile, + path: P, + ) -> ZipResult<()> { self.raw_copy_file_rename(file, path_to_string(path)) } @@ -1244,9 +1251,12 @@ impl ZipWriter { /// This function ensures that the '/' path separator is used and normalizes `.` and `..`. It /// ignores any `..` or Windows drive letter that would produce a path outside the ZIP file's /// root. - pub fn shallow_copy_file_from_path, U: AsRef>(&mut self, src_path: T, dest_path: U) -> ZipResult<()> - { - self.shallow_copy_file(&*path_to_string(src_path), &*path_to_string(dest_path)) + pub fn shallow_copy_file_from_path, U: AsRef>( + &mut self, + src_path: T, + dest_path: U, + ) -> ZipResult<()> { + self.shallow_copy_file(&path_to_string(src_path), &path_to_string(dest_path)) } }