pub enum RadioMode {
Sleep,
Standby,
FrequencySynthesis,
Transmit,
Receive(RxMode),
ChannelActivityDetection,
}Expand description
The state of the radio
Variants§
Sleep
Sleep mode
Standby
Standby mode
FrequencySynthesis
Frequency synthesis mode
Transmit
Transmit (TX) mode
Receive(RxMode)
Receive (RX) mode
ChannelActivityDetection
Channel activity detection (CAD) mode
Trait Implementations§
impl Copy for RadioMode
impl StructuralPartialEq for RadioMode
Auto Trait Implementations§
impl Freeze for RadioMode
impl RefUnwindSafe for RadioMode
impl Send for RadioMode
impl Sync for RadioMode
impl Unpin for RadioMode
impl UnwindSafe for RadioMode
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