#[non_exhaustive]pub struct CurrentPerformanceRiskRatings { /* private fields */ }
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.
Implementations
sourceimpl 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.
sourceimpl CurrentPerformanceRiskRatings
impl CurrentPerformanceRiskRatings
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CurrentPerformanceRiskRatings
.
Trait Implementations
sourceimpl Clone for CurrentPerformanceRiskRatings
impl Clone for CurrentPerformanceRiskRatings
sourcefn clone(&self) -> CurrentPerformanceRiskRatings
fn clone(&self) -> CurrentPerformanceRiskRatings
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 CurrentPerformanceRiskRatings
impl Debug for CurrentPerformanceRiskRatings
sourceimpl PartialEq<CurrentPerformanceRiskRatings> for CurrentPerformanceRiskRatings
impl PartialEq<CurrentPerformanceRiskRatings> for CurrentPerformanceRiskRatings
sourcefn eq(&self, other: &CurrentPerformanceRiskRatings) -> bool
fn eq(&self, other: &CurrentPerformanceRiskRatings) -> bool
impl StructuralPartialEq for CurrentPerformanceRiskRatings
Auto Trait Implementations
impl RefUnwindSafe for CurrentPerformanceRiskRatings
impl Send for CurrentPerformanceRiskRatings
impl Sync for CurrentPerformanceRiskRatings
impl Unpin for CurrentPerformanceRiskRatings
impl UnwindSafe for CurrentPerformanceRiskRatings
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