[][src]Struct rusoto_forecast::Statistics

pub struct Statistics {
    pub avg: Option<f64>,
    pub count: Option<i64>,
    pub count_distinct: Option<i64>,
    pub count_nan: Option<i64>,
    pub count_null: Option<i64>,
    pub max: Option<String>,
    pub min: Option<String>,
    pub stddev: Option<f64>,
}

Provides statistics for each data field imported into to an Amazon Forecast dataset with the CreateDatasetImportJob operation.

Fields

avg: Option<f64>

For a numeric field, the average value in the field.

count: Option<i64>

The number of values in the field.

count_distinct: Option<i64>

The number of distinct values in the field.

count_nan: Option<i64>

The number of NAN (not a number) values in the field.

count_null: Option<i64>

The number of null values in the field.

max: Option<String>

For a numeric field, the maximum value in the field.

min: Option<String>

For a numeric field, the minimum value in the field.

stddev: Option<f64>

For a numeric field, the standard deviation.

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

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

impl<T> Instrument for T[src]

impl<T> Instrument 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.