Struct rusoto_xray::ErrorStatistics[][src]

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

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

Fields

The number of requests that failed with untracked 4xx Client Error status codes.

The number of requests that failed with a 419 throttling status code.

The total number of requests that failed with a 4xx Client Error status code.

Trait Implementations

impl Default for ErrorStatistics
[src]

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

impl Debug for ErrorStatistics
[src]

Formats the value using the given formatter. Read more

impl Clone for ErrorStatistics
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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