#[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§
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
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 PartialEq<CurrentPerformanceRiskRatings> for CurrentPerformanceRiskRatings
impl PartialEq<CurrentPerformanceRiskRatings> for CurrentPerformanceRiskRatings
source§fn eq(&self, other: &CurrentPerformanceRiskRatings) -> bool
fn eq(&self, other: &CurrentPerformanceRiskRatings) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
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