#[repr(u8)]pub enum Hdrdlyselect {
Delay0 = 0,
Delay1 = 1,
Delay2 = 2,
Delay3 = 3,
}
Expand description
LIN Master Header Delay
Value on reset: 0
Variants§
Delay0 = 0
0: Delay between break and sync transmission is 1 bit time; Delay between sync and ID transmission is 1 bit time
Delay1 = 1
1: Delay between break and sync transmission is 4 bit time; Delay between sync and ID transmission is 4 bit time
Delay2 = 2
2: Delay between break and sync transmission is 8 bit time; Delay between sync and ID transmission is 4 bit time
Delay3 = 3
3: Delay between break and sync transmission is 14 bit time; Delay between sync and ID transmission is 4 bit time
Trait Implementations§
Source§impl Clone for Hdrdlyselect
impl Clone for Hdrdlyselect
Source§fn clone(&self) -> Hdrdlyselect
fn clone(&self) -> Hdrdlyselect
Returns a copy 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 Hdrdlyselect
impl Debug for Hdrdlyselect
Source§impl From<Hdrdlyselect> for u8
impl From<Hdrdlyselect> for u8
Source§fn from(variant: Hdrdlyselect) -> Self
fn from(variant: Hdrdlyselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Hdrdlyselect
impl PartialEq for Hdrdlyselect
impl Copy for Hdrdlyselect
impl Eq for Hdrdlyselect
impl IsEnum for Hdrdlyselect
impl StructuralPartialEq for Hdrdlyselect
Auto Trait Implementations§
impl Freeze for Hdrdlyselect
impl RefUnwindSafe for Hdrdlyselect
impl Send for Hdrdlyselect
impl Sync for Hdrdlyselect
impl Unpin for Hdrdlyselect
impl UnwindSafe for Hdrdlyselect
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