Struct rusoto_xray::ServiceStatistics[][src]

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

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

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

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

The total number of completed requests.

The aggregate response time of completed requests.

Trait Implementations

impl Default for ServiceStatistics
[src]

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

impl Debug for ServiceStatistics
[src]

Formats the value using the given formatter. Read more

impl Clone for ServiceStatistics
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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