[][src]Struct criner_waste_report::TarPackage

pub struct TarPackage {
    pub entries_meta_data: Vec<TarHeader>,
    pub entries: Vec<(TarHeader, Vec<u8>)>,
}

Fields

entries_meta_data: Vec<TarHeader>

Meta data of all entries in the crate

entries: Vec<(TarHeader, Vec<u8>)>

The actual content of selected files, Cargo.*, build.rs and lib/main IMPORTANT: This file may be partial and limited in size unless it is Cargo.toml, which is always complete. Note that these are also present in entries_meta_data.

Trait Implementations

impl Clone for TarPackage[src]

impl Debug for TarPackage[src]

impl<'de> Deserialize<'de> for TarPackage[src]

impl Eq for TarPackage[src]

impl PartialEq<TarPackage> for TarPackage[src]

impl Serialize for TarPackage[src]

impl StructuralEq for TarPackage[src]

impl StructuralPartialEq for TarPackage[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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.