#[repr(C, packed(1))]pub struct Entry {
pub blake3: [u8; 32],
pub offset: u64,
pub size: u64,
pub mode: u32,
pub path: [u8; 256],
}Fields§
§blake3: [u8; 32]Blake3 sum of the file data
offset: u64Offset of file data in the data portion
size: u64Size in bytes of the file data in the data portion
mode: u32Unix permissions (user, group, other with read, write, execute)
path: [u8; 256]NUL-terminated relative path from extract directory
Implementations§
Trait Implementations§
impl Copy for Entry
impl Pod for Entry
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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.