pub enum ExternalState {
Show 13 variants
ON = 0,
BUSY_RX = 1,
BUSY_TX = 2,
RX_ON = 6,
TRX_OFF = 8,
PLL_ON = 9,
SLEEP = 15,
PREP_DEEP_SLEEP = 16,
BUSY_RX_AACK = 17,
BUSY_TX_ARET = 18,
RX_AACK_ON = 22,
TX_ARET_ON = 25,
STATE_TRANSITION_IN_PROGRESS = 31,
}
Variants§
ON = 0
BUSY_RX = 1
BUSY_TX = 2
RX_ON = 6
TRX_OFF = 8
PLL_ON = 9
SLEEP = 15
PREP_DEEP_SLEEP = 16
BUSY_RX_AACK = 17
BUSY_TX_ARET = 18
RX_AACK_ON = 22
TX_ARET_ON = 25
STATE_TRANSITION_IN_PROGRESS = 31
Trait Implementations§
Source§impl Clone for ExternalState
impl Clone for ExternalState
Source§fn clone(&self) -> ExternalState
fn clone(&self) -> ExternalState
Returns a copy 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 ExternalState
impl Debug for ExternalState
Source§impl PartialEq for ExternalState
impl PartialEq for ExternalState
impl Copy for ExternalState
impl StructuralPartialEq for ExternalState
Auto Trait Implementations§
impl Freeze for ExternalState
impl RefUnwindSafe for ExternalState
impl Send for ExternalState
impl Sync for ExternalState
impl Unpin for ExternalState
impl UnwindSafe for ExternalState
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