pub struct Entry {
pub offset: usize,
pub is_dir: bool,
pub name: String,
pub compression: Compression,
pub bytes: Vec<u8>,
}
Fields§
§offset: usize
§is_dir: bool
§name: String
§compression: Compression
§bytes: Vec<u8>
Implementations§
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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