[][src]Struct rusoto_iot::Statistics

pub struct Statistics {
    pub average: Option<f64>,
    pub count: Option<i64>,
    pub maximum: Option<f64>,
    pub minimum: Option<f64>,
    pub std_deviation: Option<f64>,
    pub sum: Option<f64>,
    pub sum_of_squares: Option<f64>,
    pub variance: Option<f64>,
}

A map of key-value pairs for all supported statistics. Currently, only count is supported.

Fields

average: Option<f64>

The average of the aggregated field values.

count: Option<i64>

The count of things that match the query.

maximum: Option<f64>

The maximum aggregated field value.

minimum: Option<f64>

The minimum aggregated field value.

std_deviation: Option<f64>

The standard deviation of the aggregated field values.

sum: Option<f64>

The sum of the aggregated field values.

sum_of_squares: Option<f64>

The sum of the squares of the aggregated field values.

variance: Option<f64>

The variance of the aggregated field values.

Trait Implementations

impl Clone for Statistics[src]

impl Debug for Statistics[src]

impl Default for Statistics[src]

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

impl PartialEq<Statistics> for Statistics[src]

impl StructuralPartialEq for Statistics[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: Deserialize<'de>, 
[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> 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.