#[non_exhaustive]pub struct PerformanceInsightsReferenceComparisonValues {
pub reference_scalar: Option<PerformanceInsightsReferenceScalar>,
pub reference_metric: Option<PerformanceInsightsReferenceMetric>,
}
Expand description
Reference scalar values and other metrics that DevOps Guru displays on a graph in its console along with the actual metrics it analyzed. Compare these reference values to your actual metrics to help you understand anomalous behavior that DevOps Guru detected.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.reference_scalar: Option<PerformanceInsightsReferenceScalar>
A scalar value DevOps Guru for a metric that DevOps Guru compares to actual metric values. This reference value is used to determine if an actual metric value should be considered anomalous.
reference_metric: Option<PerformanceInsightsReferenceMetric>
A metric that DevOps Guru compares to actual metric values. This reference metric is used to determine if an actual metric should be considered anomalous.
Implementations§
source§impl PerformanceInsightsReferenceComparisonValues
impl PerformanceInsightsReferenceComparisonValues
sourcepub fn reference_scalar(&self) -> Option<&PerformanceInsightsReferenceScalar>
pub fn reference_scalar(&self) -> Option<&PerformanceInsightsReferenceScalar>
A scalar value DevOps Guru for a metric that DevOps Guru compares to actual metric values. This reference value is used to determine if an actual metric value should be considered anomalous.
sourcepub fn reference_metric(&self) -> Option<&PerformanceInsightsReferenceMetric>
pub fn reference_metric(&self) -> Option<&PerformanceInsightsReferenceMetric>
A metric that DevOps Guru compares to actual metric values. This reference metric is used to determine if an actual metric should be considered anomalous.
source§impl PerformanceInsightsReferenceComparisonValues
impl PerformanceInsightsReferenceComparisonValues
sourcepub fn builder() -> PerformanceInsightsReferenceComparisonValuesBuilder
pub fn builder() -> PerformanceInsightsReferenceComparisonValuesBuilder
Creates a new builder-style object to manufacture PerformanceInsightsReferenceComparisonValues
.
Trait Implementations§
source§impl Clone for PerformanceInsightsReferenceComparisonValues
impl Clone for PerformanceInsightsReferenceComparisonValues
source§fn clone(&self) -> PerformanceInsightsReferenceComparisonValues
fn clone(&self) -> PerformanceInsightsReferenceComparisonValues
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for PerformanceInsightsReferenceComparisonValues
impl PartialEq for PerformanceInsightsReferenceComparisonValues
source§fn eq(&self, other: &PerformanceInsightsReferenceComparisonValues) -> bool
fn eq(&self, other: &PerformanceInsightsReferenceComparisonValues) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PerformanceInsightsReferenceComparisonValues
Auto Trait Implementations§
impl Freeze for PerformanceInsightsReferenceComparisonValues
impl RefUnwindSafe for PerformanceInsightsReferenceComparisonValues
impl Send for PerformanceInsightsReferenceComparisonValues
impl Sync for PerformanceInsightsReferenceComparisonValues
impl Unpin for PerformanceInsightsReferenceComparisonValues
impl UnwindSafe for PerformanceInsightsReferenceComparisonValues
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more