#[repr(u8)]pub enum State {
Show 16 variants
Disabled = 0,
RxRu = 1,
RxIdle = 2,
Rx = 3,
RxDisable = 4,
_RESERVED_5 = 5,
_RESERVED_6 = 6,
_RESERVED_7 = 7,
_RESERVED_8 = 8,
TxRu = 9,
TxIdle = 10,
Tx = 11,
TxDisable = 12,
_RESERVED_d = 13,
_RESERVED_e = 14,
_RESERVED_f = 15,
}Variants§
Disabled = 0
RADIO is in the Disabled state.
RxRu = 1
RADIO is in the RXRU state.
RxIdle = 2
RADIO is in the RXIDLE state.
Rx = 3
RADIO is in the RX state.
RxDisable = 4
RADIO is in the RXDISABLED state.
_RESERVED_5 = 5
_RESERVED_6 = 6
_RESERVED_7 = 7
_RESERVED_8 = 8
TxRu = 9
RADIO is in the TXRU state.
TxIdle = 10
RADIO is in the TXIDLE state.
Tx = 11
RADIO is in the TX state.
TxDisable = 12
RADIO is in the TXDISABLED state.
_RESERVED_d = 13
_RESERVED_e = 14
_RESERVED_f = 15
Implementations§
Trait Implementations§
Source§impl Ord for State
impl Ord for State
Source§impl PartialOrd for State
impl PartialOrd for State
impl Copy for State
impl Eq for State
impl StructuralPartialEq for State
Auto Trait Implementations§
impl Freeze for State
impl RefUnwindSafe for State
impl Send for State
impl Sync for State
impl Unpin for State
impl UnwindSafe for State
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