pub enum BudgetPressure {
Calm,
Elevated,
Critical,
Overflow,
}Variants§
Trait Implementations§
Source§impl Clone for BudgetPressure
impl Clone for BudgetPressure
Source§fn clone(&self) -> BudgetPressure
fn clone(&self) -> BudgetPressure
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BudgetPressure
impl Debug for BudgetPressure
Source§impl PartialEq for BudgetPressure
impl PartialEq for BudgetPressure
Source§fn eq(&self, other: &BudgetPressure) -> bool
fn eq(&self, other: &BudgetPressure) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BudgetPressure
impl Eq for BudgetPressure
impl StructuralPartialEq for BudgetPressure
Auto Trait Implementations§
impl Freeze for BudgetPressure
impl RefUnwindSafe for BudgetPressure
impl Send for BudgetPressure
impl Sync for BudgetPressure
impl Unpin for BudgetPressure
impl UnsafeUnpin for BudgetPressure
impl UnwindSafe for BudgetPressure
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