Struct rusoto_xray::FaultStatistics[][src]

pub struct FaultStatistics {
    pub other_count: Option<i64>,
    pub total_count: Option<i64>,
}

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

Fields

The number of requests that failed with untracked 5xx Server Error status codes.

The total number of requests that failed with a 5xx Server Error status code.

Trait Implementations

impl Default for FaultStatistics
[src]

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

impl Debug for FaultStatistics
[src]

Formats the value using the given formatter. Read more

impl Clone for FaultStatistics
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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