Struct aws_sdk_rds::types::MetricQuery
source · #[non_exhaustive]pub struct MetricQuery {
pub performance_insights_metric_query: Option<PerformanceInsightsMetricQuery>,
}Expand description
The query to retrieve metric data points.
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.performance_insights_metric_query: Option<PerformanceInsightsMetricQuery>The Performance Insights query that you can use to retrieve Performance Insights metric data points.
Implementations§
source§impl MetricQuery
impl MetricQuery
sourcepub fn performance_insights_metric_query(
&self
) -> Option<&PerformanceInsightsMetricQuery>
pub fn performance_insights_metric_query( &self ) -> Option<&PerformanceInsightsMetricQuery>
The Performance Insights query that you can use to retrieve Performance Insights metric data points.
source§impl MetricQuery
impl MetricQuery
sourcepub fn builder() -> MetricQueryBuilder
pub fn builder() -> MetricQueryBuilder
Creates a new builder-style object to manufacture MetricQuery.
Trait Implementations§
source§impl Clone for MetricQuery
impl Clone for MetricQuery
source§fn clone(&self) -> MetricQuery
fn clone(&self) -> MetricQuery
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 MetricQuery
impl Debug for MetricQuery
source§impl PartialEq for MetricQuery
impl PartialEq for MetricQuery
source§fn eq(&self, other: &MetricQuery) -> bool
fn eq(&self, other: &MetricQuery) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for MetricQuery
Auto Trait Implementations§
impl Freeze for MetricQuery
impl RefUnwindSafe for MetricQuery
impl Send for MetricQuery
impl Sync for MetricQuery
impl Unpin for MetricQuery
impl UnwindSafe for MetricQuery
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.