[][src]Trait rc_zip::prelude::ReadZipWithSize

pub trait ReadZipWithSize {
    fn read_zip_with_size(&self, size: u64) -> Result<Archive, Error>;
}

A trait for reading something as a zip archive (blocking I/O model)

See also ReadZip.

Required methods

fn read_zip_with_size(&self, size: u64) -> Result<Archive, Error>

Reads self as a zip archive.

This functions blocks until the entire archive has been read. It is not compatible with non-blocking or async I/O.

Loading content...

Implementors

impl ReadZipWithSize for dyn ReadAt[src]

Loading content...