Struct tar::GnuExtSparseHeader [−][src]
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]
Auto Trait Implementations
impl RefUnwindSafe for GnuExtSparseHeader
impl Send for GnuExtSparseHeader
impl Sync for GnuExtSparseHeader
impl Unpin for GnuExtSparseHeader
impl UnwindSafe for GnuExtSparseHeader
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
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]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,