[][src]Struct tar::GnuExtSparseHeader

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

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]

Methods

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]

Auto Trait Implementations

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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