#[repr(u8)]pub enum FlrcPreambleLen {
Bits8 = 0,
Bits12 = 1,
Bits16 = 2,
Bits20 = 3,
Bits24 = 4,
Bits28 = 5,
Bits32 = 6,
}Expand description
FLRC preamble length enum (PROTOCOL.md §10.4).
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for FlrcPreambleLen
impl Clone for FlrcPreambleLen
Source§fn clone(&self) -> FlrcPreambleLen
fn clone(&self) -> FlrcPreambleLen
Returns a duplicate 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 FlrcPreambleLen
impl Debug for FlrcPreambleLen
Source§impl Format for FlrcPreambleLen
impl Format for FlrcPreambleLen
Source§impl PartialEq for FlrcPreambleLen
impl PartialEq for FlrcPreambleLen
impl Copy for FlrcPreambleLen
impl Eq for FlrcPreambleLen
impl StructuralPartialEq for FlrcPreambleLen
Auto Trait Implementations§
impl Freeze for FlrcPreambleLen
impl RefUnwindSafe for FlrcPreambleLen
impl Send for FlrcPreambleLen
impl Sync for FlrcPreambleLen
impl Unpin for FlrcPreambleLen
impl UnsafeUnpin for FlrcPreambleLen
impl UnwindSafe for FlrcPreambleLen
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