pub trait ReadZipMove {
// Required method
fn read_zip_move(self) -> Result<MovableArchiveHandle, UrlError>;
}Available on crate features
blocking and zip only.Expand description
A version of ReadZip that takes ownership of self.
Required Methods§
Sourcefn read_zip_move(self) -> Result<MovableArchiveHandle, UrlError>
fn read_zip_move(self) -> Result<MovableArchiveHandle, UrlError>
A version of ReadZip::read_zip that takes ownership of self.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".