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