Enum Addrcfg
#[repr(u8)]pub enum Addrcfg {
_000 = 0,
_001 = 1,
_010 = 2,
_011 = 3,
_100 = 4,
_101 = 5,
_110 = 6,
_111 = 7,
}Expand description
Address Configuration
Value on reset: 0
Variants§
_000 = 0
0: Address match 0 (7-bit).
_001 = 1
1: Address match 0 (10-bit).
_010 = 2
2: Address match 0 (7-bit) or Address match 1 (7-bit).
_011 = 3
3: Address match 0 (10-bit) or Address match 1 (10-bit).
_100 = 4
4: Address match 0 (7-bit) or Address match 1 (10-bit).
_101 = 5
5: Address match 0 (10-bit) or Address match 1 (7-bit).
_110 = 6
6: From Address match 0 (7-bit) to Address match 1 (7-bit).
_111 = 7
7: From Address match 0 (10-bit) to Address match 1 (10-bit).
Trait Implementations§
impl Copy for Addrcfg
impl Eq for Addrcfg
impl IsEnum for Addrcfg
impl StructuralPartialEq for Addrcfg
Auto Trait Implementations§
impl Freeze for Addrcfg
impl RefUnwindSafe for Addrcfg
impl Send for Addrcfg
impl Sync for Addrcfg
impl Unpin for Addrcfg
impl UnwindSafe for Addrcfg
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