#[repr(u8)]pub enum Maxspd {
SMALL_THAN_20M = 0,
SMALL_THAN_25M = 1,
SMALL_THAN_33M = 2,
SMALL_THAN_50M = 3,
SMALL_THAN_66M = 4,
_RESERVED_5 = 5,
_RESERVED_6 = 6,
_RESERVED_7 = 7,
}Variants§
SMALL_THAN_20M = 0
<=20 MHz
SMALL_THAN_25M = 1
<=25 MHz (24 Mhz)
SMALL_THAN_33M = 2
<=33 MHz (30 MHz)
SMALL_THAN_50M = 3
<=50 MHz (48 MHz)
SMALL_THAN_66M = 4
<=66 MHz (60 MHz)
_RESERVED_5 = 5
_RESERVED_6 = 6
_RESERVED_7 = 7
Implementations§
Trait Implementations§
Source§impl Ord for Maxspd
impl Ord for Maxspd
Source§impl PartialOrd for Maxspd
impl PartialOrd for Maxspd
impl Copy for Maxspd
impl Eq for Maxspd
impl StructuralPartialEq for Maxspd
Auto Trait Implementations§
impl Freeze for Maxspd
impl RefUnwindSafe for Maxspd
impl Send for Maxspd
impl Sync for Maxspd
impl Unpin for Maxspd
impl UnwindSafe for Maxspd
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