Enum Pwrmode
#[repr(u8)]pub enum Pwrmode {
HIGH = 0,
MEDIUM = 1,
MEDIUM_EITHER = 2,
LOW = 3,
}
Variants§
HIGH = 0
High speed / full power
MEDIUM = 1
Medium speed / medium power
MEDIUM_EITHER = 2
Medium speed / medium power
LOW = 3
Ultra low power / ultra-low-power
Implementations§
Trait Implementations§
§impl Ord for Pwrmode
impl Ord for Pwrmode
§impl PartialOrd for Pwrmode
impl PartialOrd for Pwrmode
impl Copy for Pwrmode
impl Eq for Pwrmode
impl StructuralPartialEq for Pwrmode
Auto Trait Implementations§
impl Freeze for Pwrmode
impl RefUnwindSafe for Pwrmode
impl Send for Pwrmode
impl Sync for Pwrmode
impl Unpin for Pwrmode
impl UnwindSafe for Pwrmode
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