pub(super) trait ZipExt {
// Required method
async fn unpack_with_callback<P: AsRef<Path>>(
&mut self,
dst: P,
cont: impl FnMut(&Path),
) -> Result<()>;
}
Available on crate feature
zip
only.Required Methods§
async fn unpack_with_callback<P: AsRef<Path>>( &mut self, dst: P, cont: impl FnMut(&Path), ) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.