pub struct Builder { /* private fields */ }
Expand description
A builder for CurrentPerformanceRiskRatings
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn high(self, input: i64) -> Self
pub fn high(self, input: i64) -> Self
A count of the applicable resource types with a high performance risk rating.
sourcepub fn set_high(self, input: Option<i64>) -> Self
pub fn set_high(self, input: Option<i64>) -> Self
A count of the applicable resource types with a high performance risk rating.
sourcepub fn medium(self, input: i64) -> Self
pub fn medium(self, input: i64) -> Self
A count of the applicable resource types with a medium performance risk rating.
sourcepub fn set_medium(self, input: Option<i64>) -> Self
pub fn set_medium(self, input: Option<i64>) -> Self
A count of the applicable resource types with a medium performance risk rating.
sourcepub fn low(self, input: i64) -> Self
pub fn low(self, input: i64) -> Self
A count of the applicable resource types with a low performance risk rating.
sourcepub fn set_low(self, input: Option<i64>) -> Self
pub fn set_low(self, input: Option<i64>) -> Self
A count of the applicable resource types with a low performance risk rating.
sourcepub fn very_low(self, input: i64) -> Self
pub fn very_low(self, input: i64) -> Self
A count of the applicable resource types with a very low performance risk rating.
sourcepub fn set_very_low(self, input: Option<i64>) -> Self
pub fn set_very_low(self, input: Option<i64>) -> Self
A count of the applicable resource types with a very low performance risk rating.
sourcepub fn build(self) -> CurrentPerformanceRiskRatings
pub fn build(self) -> CurrentPerformanceRiskRatings
Consumes the builder and constructs a CurrentPerformanceRiskRatings
.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
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