#[repr(u8)]pub enum Ctrl {
_RESERVED_0 = 0,
ENABLE_RESET = 1,
ENABLE_INTERRUPT = 2,
_RESERVED_3 = 3,
DISABLE_BOTH = 4,
_RESERVED_5 = 5,
_RESERVED_6 = 6,
_RESERVED_7 = 7,
}Variants§
_RESERVED_0 = 0
ENABLE_RESET = 1
Enable reset.
ENABLE_INTERRUPT = 2
Enable interrupt.
_RESERVED_3 = 3
DISABLE_BOTH = 4
Disable both reset and interrupt.
_RESERVED_5 = 5
_RESERVED_6 = 6
_RESERVED_7 = 7
Implementations§
Trait Implementations§
Source§impl Ord for Ctrl
impl Ord for Ctrl
Source§impl PartialOrd for Ctrl
impl PartialOrd for Ctrl
impl Copy for Ctrl
impl Eq for Ctrl
impl StructuralPartialEq for Ctrl
Auto Trait Implementations§
impl Freeze for Ctrl
impl RefUnwindSafe for Ctrl
impl Send for Ctrl
impl Sync for Ctrl
impl Unpin for Ctrl
impl UnwindSafe for Ctrl
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