#[non_exhaustive]pub struct CurrentPerformanceRiskRatings {
pub high: i64,
pub medium: i64,
pub low: i64,
pub very_low: i64,
}
Expand description
Describes the performance risk ratings for a given resource type.
Resources with a high
or medium
rating are at risk of not meeting the performance needs of their workloads, while resources with a low
rating are performing well in their workloads.
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.high: i64
A count of the applicable resource types with a high performance risk rating.
medium: i64
A count of the applicable resource types with a medium performance risk rating.
low: i64
A count of the applicable resource types with a low performance risk rating.
very_low: i64
A count of the applicable resource types with a very low performance risk rating.
Implementations§
source§impl CurrentPerformanceRiskRatings
impl CurrentPerformanceRiskRatings
sourcepub fn high(&self) -> i64
pub fn high(&self) -> i64
A count of the applicable resource types with a high performance risk rating.
sourcepub fn medium(&self) -> i64
pub fn medium(&self) -> i64
A count of the applicable resource types with a medium performance risk rating.
source§impl CurrentPerformanceRiskRatings
impl CurrentPerformanceRiskRatings
sourcepub fn builder() -> CurrentPerformanceRiskRatingsBuilder
pub fn builder() -> CurrentPerformanceRiskRatingsBuilder
Creates a new builder-style object to manufacture CurrentPerformanceRiskRatings
.
Trait Implementations§
source§impl Clone for CurrentPerformanceRiskRatings
impl Clone for CurrentPerformanceRiskRatings
source§fn clone(&self) -> CurrentPerformanceRiskRatings
fn clone(&self) -> CurrentPerformanceRiskRatings
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CurrentPerformanceRiskRatings
impl PartialEq for CurrentPerformanceRiskRatings
source§fn eq(&self, other: &CurrentPerformanceRiskRatings) -> bool
fn eq(&self, other: &CurrentPerformanceRiskRatings) -> bool
self
and other
values to be equal, and is used
by ==
.