pub enum RadioState {
Idle,
Scanning,
Advertising,
Syncing,
Transitioning,
}Expand description
Radio activity state
Variants§
Idle
Radio is off/sleeping
Scanning
Scanning for advertisements
Advertising
Sending advertisements
Syncing
Connected and syncing
Transitioning
Transitioning between states
Trait Implementations§
Source§impl Clone for RadioState
impl Clone for RadioState
Source§fn clone(&self) -> RadioState
fn clone(&self) -> RadioState
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 RadioState
impl Debug for RadioState
Source§impl Default for RadioState
impl Default for RadioState
Source§fn default() -> RadioState
fn default() -> RadioState
Returns the “default value” for a type. Read more
Source§impl PartialEq for RadioState
impl PartialEq for RadioState
impl Copy for RadioState
impl Eq for RadioState
impl StructuralPartialEq for RadioState
Auto Trait Implementations§
impl Freeze for RadioState
impl RefUnwindSafe for RadioState
impl Send for RadioState
impl Sync for RadioState
impl Unpin for RadioState
impl UnsafeUnpin for RadioState
impl UnwindSafe for RadioState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.