Struct aws_sdk_xray::model::ErrorStatistics
source · [−]#[non_exhaustive]pub struct ErrorStatistics { /* private fields */ }
Expand description
Information about requests that failed with a 4xx Client Error status code.
Implementations
sourceimpl ErrorStatistics
impl ErrorStatistics
sourcepub fn throttle_count(&self) -> Option<i64>
pub fn throttle_count(&self) -> Option<i64>
The number of requests that failed with a 419 throttling status code.
sourcepub fn other_count(&self) -> Option<i64>
pub fn other_count(&self) -> Option<i64>
The number of requests that failed with untracked 4xx Client Error status codes.
sourcepub fn total_count(&self) -> Option<i64>
pub fn total_count(&self) -> Option<i64>
The total number of requests that failed with a 4xx Client Error status code.
sourceimpl ErrorStatistics
impl ErrorStatistics
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ErrorStatistics
.
Trait Implementations
sourceimpl Clone for ErrorStatistics
impl Clone for ErrorStatistics
sourcefn clone(&self) -> ErrorStatistics
fn clone(&self) -> ErrorStatistics
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ErrorStatistics
impl Debug for ErrorStatistics
sourceimpl PartialEq<ErrorStatistics> for ErrorStatistics
impl PartialEq<ErrorStatistics> for ErrorStatistics
sourcefn eq(&self, other: &ErrorStatistics) -> bool
fn eq(&self, other: &ErrorStatistics) -> bool
impl StructuralPartialEq for ErrorStatistics
Auto Trait Implementations
impl RefUnwindSafe for ErrorStatistics
impl Send for ErrorStatistics
impl Sync for ErrorStatistics
impl Unpin for ErrorStatistics
impl UnwindSafe for ErrorStatistics
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more