pub enum LowMediumHigh {
Low,
Medium,
High,
}Expand description
“low” | “medium” | “high”
Variants§
Trait Implementations§
Source§impl Clone for LowMediumHigh
impl Clone for LowMediumHigh
Source§fn clone(&self) -> LowMediumHigh
fn clone(&self) -> LowMediumHigh
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 moreimpl Copy for LowMediumHigh
Source§impl Debug for LowMediumHigh
impl Debug for LowMediumHigh
impl Eq for LowMediumHigh
Source§impl PartialEq for LowMediumHigh
impl PartialEq for LowMediumHigh
Source§fn eq(&self, other: &LowMediumHigh) -> bool
fn eq(&self, other: &LowMediumHigh) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LowMediumHigh
Auto Trait Implementations§
impl Freeze for LowMediumHigh
impl RefUnwindSafe for LowMediumHigh
impl Send for LowMediumHigh
impl Sync for LowMediumHigh
impl Unpin for LowMediumHigh
impl UnsafeUnpin for LowMediumHigh
impl UnwindSafe for LowMediumHigh
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