[][src]Trait rc_zip::ReadZip

pub trait ReadZip {
    fn read_zip(&self) -> Result<Archive, Error>;
}

A trait for reading something as a zip archive (blocking I/O model), when we can tell size from self.

See also ReadZipWithSize.

Required methods

fn read_zip(&self) -> 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...

Implementations on Foreign Types

impl ReadZip for Vec<u8>[src]

impl ReadZip for File[src]

Loading content...

Implementors

Loading content...