AsyncReadZipMove

Trait AsyncReadZipMove 

Source
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§

Source

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.

Implementations on Foreign Types§

Source§

impl AsyncReadZipMove for Arc<RandomAccessFile>

Implementors§