pub struct ZipArchiveEntryWayfinder { /* private fields */ }Expand description
Contains directions to where the Zip entry’s data is located within the Zip archive.
Implementations§
Source§impl ZipArchiveEntryWayfinder
impl ZipArchiveEntryWayfinder
Sourcepub fn uncompressed_size_hint(&self) -> u64
pub fn uncompressed_size_hint(&self) -> u64
Equivalent to ZipFileHeaderRecord::compressed_size_hint
This is a convenience method to avoid having to deal with lifetime
issues on a ZipFileHeaderRecord
Sourcepub fn compressed_size_hint(&self) -> u64
pub fn compressed_size_hint(&self) -> u64
Equivalent to ZipFileHeaderRecord::compressed_size_hint
This is a convenience method to avoid having to deal with lifetime
issues on a ZipFileHeaderRecord
Trait Implementations§
Source§impl Clone for ZipArchiveEntryWayfinder
impl Clone for ZipArchiveEntryWayfinder
Source§fn clone(&self) -> ZipArchiveEntryWayfinder
fn clone(&self) -> ZipArchiveEntryWayfinder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ZipArchiveEntryWayfinder
impl Debug for ZipArchiveEntryWayfinder
Source§impl PartialEq for ZipArchiveEntryWayfinder
impl PartialEq for ZipArchiveEntryWayfinder
impl Copy for ZipArchiveEntryWayfinder
impl Eq for ZipArchiveEntryWayfinder
impl StructuralPartialEq for ZipArchiveEntryWayfinder
Auto Trait Implementations§
impl Freeze for ZipArchiveEntryWayfinder
impl RefUnwindSafe for ZipArchiveEntryWayfinder
impl Send for ZipArchiveEntryWayfinder
impl Sync for ZipArchiveEntryWayfinder
impl Unpin for ZipArchiveEntryWayfinder
impl UnwindSafe for ZipArchiveEntryWayfinder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more