pub struct Entry {
pub name: String,
pub packed: usize,
pub len: usize,
}Expand description
Name and packed/unpacked lengths of an archive entry
Fields§
§name: StringName of the file
This can contain embedded Windows-style backslash paths,
e.g., D85 Gruenfeld Defence-163.html\42289499p0.jpg
packed: usizeThe length of the packed data, in bytes
len: usizeThe length of the (original) data, in bytes
Trait 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 UnsafeUnpin 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