[][src]Struct rusoto_sagemaker::TrialComponentMetricSummary

pub struct TrialComponentMetricSummary {
    pub avg: Option<f64>,
    pub count: Option<i64>,
    pub last: Option<f64>,
    pub max: Option<f64>,
    pub metric_name: Option<String>,
    pub min: Option<f64>,
    pub source_arn: Option<String>,
    pub std_dev: Option<f64>,
    pub time_stamp: Option<f64>,
}

A summary of the metrics of a trial component.

Fields

avg: Option<f64>

The average value of the metric.

count: Option<i64>

The number of samples used to generate the metric.

last: Option<f64>

The most recent value of the metric.

max: Option<f64>

The maximum value of the metric.

metric_name: Option<String>

The name of the metric.

min: Option<f64>

The minimum value of the metric.

source_arn: Option<String>

The Amazon Resource Name (ARN) of the source.

std_dev: Option<f64>

The standard deviation of the metric.

time_stamp: Option<f64>

When the metric was last updated.

Trait Implementations

impl Clone for TrialComponentMetricSummary[src]

impl Debug for TrialComponentMetricSummary[src]

impl Default for TrialComponentMetricSummary[src]

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

impl PartialEq<TrialComponentMetricSummary> for TrialComponentMetricSummary[src]

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