[][src]Struct rusoto_xray::TimeSeriesServiceStatistics

pub struct TimeSeriesServiceStatistics {
    pub edge_summary_statistics: Option<EdgeStatistics>,
    pub response_time_histogram: Option<Vec<HistogramEntry>>,
    pub service_forecast_statistics: Option<ForecastStatistics>,
    pub service_summary_statistics: Option<ServiceStatistics>,
    pub timestamp: Option<f64>,
}

A list of TimeSeriesStatistic structures.

Fields

edge_summary_statistics: Option<EdgeStatistics>response_time_histogram: Option<Vec<HistogramEntry>>

The response time histogram for the selected entities.

service_forecast_statistics: Option<ForecastStatistics>

The forecasted high and low fault count values.

service_summary_statistics: Option<ServiceStatistics>timestamp: Option<f64>

Timestamp of the window for which statistics are aggregated.

Trait Implementations

impl Clone for TimeSeriesServiceStatistics[src]

impl Debug for TimeSeriesServiceStatistics[src]

impl Default for TimeSeriesServiceStatistics[src]

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

impl PartialEq<TimeSeriesServiceStatistics> for TimeSeriesServiceStatistics[src]

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