#[repr(u8)]pub enum Autonack {
NORMAL = 0,
AUTOMATIC = 1,
}Variants§
NORMAL = 0
Normal operation, matching I2C addresses are not ignored.
AUTOMATIC = 1
Automatic-only mode. All incoming addresses are ignored (NACKed), unless AUTOACK is set, it matches SLVADRn, and AUTOMATCHREAD matches the direction.
Implementations§
Trait Implementations§
Source§impl Ord for Autonack
impl Ord for Autonack
Source§impl PartialOrd for Autonack
impl PartialOrd for Autonack
impl Copy for Autonack
impl Eq for Autonack
impl StructuralPartialEq for Autonack
Auto Trait Implementations§
impl Freeze for Autonack
impl RefUnwindSafe for Autonack
impl Send for Autonack
impl Sync for Autonack
impl Unpin for Autonack
impl UnwindSafe for Autonack
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