Trait HasZipMetadata

Source
pub trait HasZipMetadata {
    // Required method
    fn get_metadata(&self) -> &ZipFileData;
}
Expand description

A trait for exposing file metadata inside the zip.

Required Methods§

Source

fn get_metadata(&self) -> &ZipFileData

Get the file metadata

Implementors§

Source§

impl<R> HasZipMetadata for ZipFile<'_, R>
where R: Read,

Source§

impl<R> HasZipMetadata for ZipFileSeek<'_, R>