#[repr(u8)]pub enum DataRate {
Show 14 variants
Reserved(u8),
Hz8000 = 3,
Hz4000 = 4,
Hz2000 = 5,
Hz1000 = 6,
Hz200 = 7,
Hz100 = 8,
Hz50 = 9,
Hz25 = 10,
Hz12X5 = 11,
Hz6X25 = 12,
Hz3X125 = 13,
Hz1X15625 = 14,
Hz500 = 15,
}Expand description
Variants§
Reserved(u8)
Hz8000 = 3
Hz4000 = 4
Hz2000 = 5
Hz1000 = 6
Hz200 = 7
Hz100 = 8
Hz50 = 9
Hz25 = 10
Hz12X5 = 11
Hz6X25 = 12
Hz3X125 = 13
Hz1X15625 = 14
Hz500 = 15
Trait Implementations§
impl Copy for DataRate
impl Eq for DataRate
impl StructuralPartialEq for DataRate
Auto Trait Implementations§
impl Freeze for DataRate
impl RefUnwindSafe for DataRate
impl Send for DataRate
impl Sync for DataRate
impl Unpin for DataRate
impl UnwindSafe for DataRate
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