Struct rusoto_xray::HistogramEntry [] [src]

pub struct HistogramEntry {
    pub count: Option<i64>,
    pub value: Option<f64>,
}

An entry in a histogram for a statistic. A histogram maps the range of observed values on the X axis, and the prevalence of each value on the Y axis.

Fields

The prevalence of the entry.

The value of the entry.

Trait Implementations

impl Default for HistogramEntry
[src]

[src]

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

impl Debug for HistogramEntry
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for HistogramEntry
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations