switch extract from dynamic to static dispatch
This commit is contained in:
parent
080292c6c3
commit
a3aac29e85
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ impl<R: Read + io::Seek> ZipArchive<R> {
|
||||||
/// # Platform-specific behaviour
|
/// # Platform-specific behaviour
|
||||||
///
|
///
|
||||||
/// On unix systems permissions from the zip file are preserved, if they exist.
|
/// On unix systems permissions from the zip file are preserved, if they exist.
|
||||||
pub fn extract(&mut self, directory: &dyn AsRef<Path>) -> ZipResult<()> {
|
pub fn extract<P: AsRef<Path>>(&mut self, directory: P) -> ZipResult<()> {
|
||||||
for i in 0..self.len() {
|
for i in 0..self.len() {
|
||||||
let mut file = self.by_index(i)?;
|
let mut file = self.by_index(i)?;
|
||||||
let filepath = file.sanitized_name();
|
let filepath = file.sanitized_name();
|
||||||
|
|
Loading…
Add table
Reference in a new issue