pub trait ReadZip {
type File: HasCursor;
// Required method
fn read_zip(&self) -> Result<SyncArchive<'_, Self::File>, Error>;
}
Expand description
A trait for reading something as a zip archive (blocking I/O model), when we can tell size from self.
See also ReadZipWithSize.