Struct aws_sdk_xray::model::ForecastStatistics
source · [−]#[non_exhaustive]pub struct ForecastStatistics { /* private fields */ }
Expand description
The predicted high and low fault count. This is used to determine if a service has become anomalous and if an insight should be created.
Implementations
sourceimpl ForecastStatistics
impl ForecastStatistics
sourcepub fn fault_count_high(&self) -> Option<i64>
pub fn fault_count_high(&self) -> Option<i64>
The upper limit of fault counts for a service.
sourcepub fn fault_count_low(&self) -> Option<i64>
pub fn fault_count_low(&self) -> Option<i64>
The lower limit of fault counts for a service.
sourceimpl ForecastStatistics
impl ForecastStatistics
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ForecastStatistics
.
Trait Implementations
sourceimpl Clone for ForecastStatistics
impl Clone for ForecastStatistics
sourcefn clone(&self) -> ForecastStatistics
fn clone(&self) -> ForecastStatistics
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 ForecastStatistics
impl Debug for ForecastStatistics
sourceimpl PartialEq<ForecastStatistics> for ForecastStatistics
impl PartialEq<ForecastStatistics> for ForecastStatistics
sourcefn eq(&self, other: &ForecastStatistics) -> bool
fn eq(&self, other: &ForecastStatistics) -> bool
impl StructuralPartialEq for ForecastStatistics
Auto Trait Implementations
impl RefUnwindSafe for ForecastStatistics
impl Send for ForecastStatistics
impl Sync for ForecastStatistics
impl Unpin for ForecastStatistics
impl UnwindSafe for ForecastStatistics
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