[][src]Struct pkgar::Entry

#[repr(packed)]
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: u64

Offset of file data in the data portion

size: u64

Size in bytes of the file data in the data portion

mode: u32

Unix permissions (user, group, other with read, write, execute)

path: [u8; 256]

NUL-terminated relative path from extract directory

Methods

impl Entry[src]

pub fn path(&self) -> &[u8][src]

Retrieve the path, ending at the first NUL

Trait Implementations

impl Clone for Entry[src]

impl Copy for Entry[src]

impl Plain for Entry[src]

Auto Trait Implementations

impl RefUnwindSafe for Entry

impl Send for Entry

impl Sync for Entry

impl Unpin for Entry

impl UnwindSafe for Entry

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,