#[repr(u8)]pub enum KeyIdMode {
Implicite = 0,
Explicite1Byte = 1,
Explicite4Byte = 2,
Explicite8Byte = 3,
}
Variants§
Implicite = 0
the key is determined implicitly from the originator and recipient(s) of the frame
Explicite1Byte = 1
the key is determined explicitly using a 1 bytes key source and a 1 byte key index
Explicite4Byte = 2
the key is determined explicitly using a 4 bytes key source and a 1 byte key index
Explicite8Byte = 3
the key is determined explicitly using a 8 bytes key source and a 1 byte key index
Trait Implementations§
impl Copy for KeyIdMode
Auto Trait Implementations§
impl Freeze for KeyIdMode
impl RefUnwindSafe for KeyIdMode
impl Send for KeyIdMode
impl Sync for KeyIdMode
impl Unpin for KeyIdMode
impl UnwindSafe for KeyIdMode
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