#[repr(u8)]pub enum SosccfgRange {
FREQ_16TO20MHZ = 0,
LOW_FREQ = 1,
MEDIUM_FREQ = 2,
HIGH_FREQ = 3,
}Variants§
FREQ_16TO20MHZ = 0
Frequency range select of 16-20 MHz.
LOW_FREQ = 1
Frequency range select of 20-30 MHz.
MEDIUM_FREQ = 2
Frequency range select of 30-50 MHz.
HIGH_FREQ = 3
Frequency range select of 50-66 MHz.
Implementations§
Source§impl SosccfgRange
impl SosccfgRange
Trait Implementations§
Source§impl Clone for SosccfgRange
impl Clone for SosccfgRange
Source§fn clone(&self) -> SosccfgRange
fn clone(&self) -> SosccfgRange
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 SosccfgRange
impl Debug for SosccfgRange
Source§impl From<SosccfgRange> for u8
impl From<SosccfgRange> for u8
Source§fn from(val: SosccfgRange) -> u8
fn from(val: SosccfgRange) -> u8
Converts to this type from the input type.
Source§impl From<u8> for SosccfgRange
impl From<u8> for SosccfgRange
Source§fn from(val: u8) -> SosccfgRange
fn from(val: u8) -> SosccfgRange
Converts to this type from the input type.
Source§impl Ord for SosccfgRange
impl Ord for SosccfgRange
Source§fn cmp(&self, other: &SosccfgRange) -> Ordering
fn cmp(&self, other: &SosccfgRange) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SosccfgRange
impl PartialEq for SosccfgRange
Source§impl PartialOrd for SosccfgRange
impl PartialOrd for SosccfgRange
impl Copy for SosccfgRange
impl Eq for SosccfgRange
impl StructuralPartialEq for SosccfgRange
Auto Trait Implementations§
impl Freeze for SosccfgRange
impl RefUnwindSafe for SosccfgRange
impl Send for SosccfgRange
impl Sync for SosccfgRange
impl Unpin for SosccfgRange
impl UnwindSafe for SosccfgRange
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