#[repr(u8)]pub enum AddressCtrl {
_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§
Source§impl AddressCtrl
impl AddressCtrl
Trait Implementations§
Source§impl Clone for AddressCtrl
impl Clone for AddressCtrl
Source§fn clone(&self) -> AddressCtrl
fn clone(&self) -> AddressCtrl
Returns a duplicate of the value. Read more
1.0.0 · 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 AddressCtrl
impl Debug for AddressCtrl
Source§impl From<AddressCtrl> for u8
impl From<AddressCtrl> for u8
Source§fn from(val: AddressCtrl) -> u8
fn from(val: AddressCtrl) -> u8
Converts to this type from the input type.
Source§impl From<u8> for AddressCtrl
impl From<u8> for AddressCtrl
Source§fn from(val: u8) -> AddressCtrl
fn from(val: u8) -> AddressCtrl
Converts to this type from the input type.
Source§impl Ord for AddressCtrl
impl Ord for AddressCtrl
Source§fn cmp(&self, other: &AddressCtrl) -> Ordering
fn cmp(&self, other: &AddressCtrl) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AddressCtrl
impl PartialEq for AddressCtrl
Source§impl PartialOrd for AddressCtrl
impl PartialOrd for AddressCtrl
impl Copy for AddressCtrl
impl Eq for AddressCtrl
impl StructuralPartialEq for AddressCtrl
Auto Trait Implementations§
impl Freeze for AddressCtrl
impl RefUnwindSafe for AddressCtrl
impl Send for AddressCtrl
impl Sync for AddressCtrl
impl Unpin for AddressCtrl
impl UnwindSafe for AddressCtrl
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