Struct tar::GnuExtSparseHeader[][src]

#[repr(C)]
pub struct GnuExtSparseHeader { pub sparse: [GnuSparseHeader; 21], pub isextended: [u8; 1], pub padding: [u8; 7], }
Expand description

Representation of the entry found to represent extended GNU sparse files.

When a GnuHeader has the isextended flag set to 1 then the contents of the next entry will be one of these headers.

Fields

sparse: [GnuSparseHeader; 21]isextended: [u8; 1]padding: [u8; 7]

Implementations

impl GnuExtSparseHeader[src]

pub fn new() -> GnuExtSparseHeader[src]

Crates a new zero’d out sparse header entry.

pub fn as_bytes(&self) -> &[u8; 512][src]

Returns a view into this header as a byte array.

pub fn as_mut_bytes(&mut self) -> &mut [u8; 512][src]

Returns a view into this header as a byte array.

pub fn sparse(&self) -> &[GnuSparseHeader; 21][src]

Returns a slice of the underlying sparse headers.

Some headers may represent empty chunks of both the offset and numbytes fields are 0.

pub fn is_extended(&self) -> bool[src]

Indicates if another sparse header should be following this one.

Trait Implementations

impl Default for GnuExtSparseHeader[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.