pub trait AsyncReadZipMove {
// Required method
async fn read_zip_move(self) -> Result<AsyncMovableArchiveHandle, UrlError>;
}Available on crate features
zip and async 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", so this trait is not object safe.