#[repr(u8)]pub enum Datalen {
BIT_7 = 0,
BIT_8 = 1,
BIT_9 = 2,
_RESERVED_3 = 3,
}Variants§
BIT_7 = 0
7 bit Data length.
BIT_8 = 1
8 bit Data length.
BIT_9 = 2
9 bit data length. The 9th bit is commonly used for addressing in multidrop mode. See the ADDRDET bit in the CTL register.
_RESERVED_3 = 3
Implementations§
Trait Implementations§
Source§impl Ord for Datalen
impl Ord for Datalen
Source§impl PartialOrd for Datalen
impl PartialOrd for Datalen
impl Copy for Datalen
impl Eq for Datalen
impl StructuralPartialEq for Datalen
Auto Trait Implementations§
impl Freeze for Datalen
impl RefUnwindSafe for Datalen
impl Send for Datalen
impl Sync for Datalen
impl Unpin for Datalen
impl UnwindSafe for Datalen
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