[][src]Struct git_odb::pack::DecodeEntryResult

pub struct DecodeEntryResult {
    pub kind: Kind,
    pub num_deltas: u32,
    pub decompressed_size: u64,
    pub compressed_size: usize,
    pub object_size: u64,
}

Fields

kind: Kindnum_deltas: u32decompressed_size: u64compressed_size: usizeobject_size: u64

Implementations

impl DecodeEntryResult[src]

pub fn default_from_kind(kind: Kind) -> Self[src]

Trait Implementations

impl Clone for DecodeEntryResult[src]

impl Debug for DecodeEntryResult[src]

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

impl Eq for DecodeEntryResult[src]

impl Hash for DecodeEntryResult[src]

impl Ord for DecodeEntryResult[src]

impl PartialEq<DecodeEntryResult> for DecodeEntryResult[src]

impl PartialOrd<DecodeEntryResult> for DecodeEntryResult[src]

impl Serialize for DecodeEntryResult[src]

impl StructuralEq for DecodeEntryResult[src]

impl StructuralPartialEq for DecodeEntryResult[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.