Enum Lec
#[repr(u8)]pub enum Lec {
NoError = 0,
Stuff = 1,
Form = 2,
Ack = 3,
BitRecessive = 4,
BitDominant = 5,
Crc = 6,
Custom = 7,
}Variants§
NoError = 0
No Error
Stuff = 1
Stuff Error
Form = 2
Form Error
Ack = 3
Acknowledgment Error
BitRecessive = 4
Bit recessive Error
BitDominant = 5
Bit dominant Error
Crc = 6
CRC Error
Custom = 7
Set by software
Implementations§
Trait Implementations§
impl Copy for Lec
impl Eq for Lec
§impl Ord for Lec
impl Ord for Lec
1.21.0 (const: unstable) · 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
§impl PartialOrd for Lec
impl PartialOrd for Lec
impl StructuralPartialEq for Lec
Auto Trait Implementations§
impl Freeze for Lec
impl RefUnwindSafe for Lec
impl Send for Lec
impl Sync for Lec
impl Unpin for Lec
impl UnsafeUnpin for Lec
impl UnwindSafe for Lec
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