[][src]Struct s3find::command::FindStat

pub struct FindStat {
    pub total_files: usize,
    pub total_space: i64,
    pub max_size: Option<i64>,
    pub min_size: Option<i64>,
    pub max_key: String,
    pub min_key: String,
    pub average_size: i64,
}

Fields

total_files: usizetotal_space: i64max_size: Option<i64>min_size: Option<i64>max_key: Stringmin_key: Stringaverage_size: i64

Trait Implementations

impl<'_> Add<&'_ [Object]> for FindStat[src]

type Output = FindStat

The resulting type after applying the + operator.

impl Clone for FindStat[src]

impl Debug for FindStat[src]

impl Default for FindStat[src]

impl Display for FindStat[src]

impl PartialEq<FindStat> for FindStat[src]

impl StructuralPartialEq for FindStat[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> DynClone for T where
    T: Clone
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.