Struct aws_sdk_rds::types::MetricReference
source · #[non_exhaustive]pub struct MetricReference {
pub name: Option<String>,
pub reference_details: Option<ReferenceDetails>,
}Expand description
The reference (threshold) for a metric.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the metric reference.
reference_details: Option<ReferenceDetails>The details of a performance issue.
Implementations§
source§impl MetricReference
impl MetricReference
sourcepub fn reference_details(&self) -> Option<&ReferenceDetails>
pub fn reference_details(&self) -> Option<&ReferenceDetails>
The details of a performance issue.
source§impl MetricReference
impl MetricReference
sourcepub fn builder() -> MetricReferenceBuilder
pub fn builder() -> MetricReferenceBuilder
Creates a new builder-style object to manufacture MetricReference.
Trait Implementations§
source§impl Clone for MetricReference
impl Clone for MetricReference
source§fn clone(&self) -> MetricReference
fn clone(&self) -> MetricReference
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for MetricReference
impl Debug for MetricReference
source§impl PartialEq for MetricReference
impl PartialEq for MetricReference
source§fn eq(&self, other: &MetricReference) -> bool
fn eq(&self, other: &MetricReference) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for MetricReference
Auto Trait Implementations§
impl RefUnwindSafe for MetricReference
impl Send for MetricReference
impl Sync for MetricReference
impl Unpin for MetricReference
impl UnwindSafe for MetricReference
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.