Struct rusoto_cloudwatch::StatisticSet[][src]

pub struct StatisticSet {
    pub maximum: f64,
    pub minimum: f64,
    pub sample_count: f64,
    pub sum: f64,
}

Represents a set of statistics that describes a specific metric.

Fields

The maximum value of the sample set.

The minimum value of the sample set.

The number of samples used for the statistic set.

The sum of values for the sample set.

Trait Implementations

impl Default for StatisticSet
[src]

Returns the "default value" for a type. Read more

impl Debug for StatisticSet
[src]

Formats the value using the given formatter. Read more

impl Clone for StatisticSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StatisticSet
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations