[][src]Struct rusoto_xray::GetTimeSeriesServiceStatisticsResult

pub struct GetTimeSeriesServiceStatisticsResult {
    pub contains_old_group_versions: Option<bool>,
    pub next_token: Option<String>,
    pub time_series_service_statistics: Option<Vec<TimeSeriesServiceStatistics>>,
}

Fields

contains_old_group_versions: Option<bool>

A flag indicating whether or not a group's filter expression has been consistent, or if a returned aggregation might show statistics from an older version of the group's filter expression.

next_token: Option<String>

Pagination token.

time_series_service_statistics: Option<Vec<TimeSeriesServiceStatistics>>

The collection of statistics.

Trait Implementations

impl Clone for GetTimeSeriesServiceStatisticsResult[src]

impl Debug for GetTimeSeriesServiceStatisticsResult[src]

impl Default for GetTimeSeriesServiceStatisticsResult[src]

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

impl PartialEq<GetTimeSeriesServiceStatisticsResult> for GetTimeSeriesServiceStatisticsResult[src]

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