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