[][src]Struct rusoto_xray::ServiceStatistics

pub struct ServiceStatistics {
    pub error_statistics: Option<ErrorStatistics>,
    pub fault_statistics: Option<FaultStatistics>,
    pub ok_count: Option<i64>,
    pub total_count: Option<i64>,
    pub total_response_time: Option<f64>,
}

Response statistics for a service.

Fields

error_statistics: Option<ErrorStatistics>

Information about requests that failed with a 4xx Client Error status code.

fault_statistics: Option<FaultStatistics>

Information about requests that failed with a 5xx Server Error status code.

ok_count: Option<i64>

The number of requests that completed with a 2xx Success status code.

total_count: Option<i64>

The total number of completed requests.

total_response_time: Option<f64>

The aggregate response time of completed requests.

Trait Implementations

impl Clone for ServiceStatistics[src]

impl Debug for ServiceStatistics[src]

impl Default for ServiceStatistics[src]

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

impl PartialEq<ServiceStatistics> for ServiceStatistics[src]

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