pub enum CentralState {
Unknown = 0,
PoweredOn = 1,
PoweredOff = 2,
}Expand description
The state of the Central
Variants§
Trait Implementations§
Source§impl Clone for CentralState
impl Clone for CentralState
Source§fn clone(&self) -> CentralState
fn clone(&self) -> CentralState
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 CentralState
impl Debug for CentralState
Source§impl PartialEq for CentralState
impl PartialEq for CentralState
impl Eq for CentralState
impl StructuralPartialEq for CentralState
Auto Trait Implementations§
impl Freeze for CentralState
impl RefUnwindSafe for CentralState
impl Send for CentralState
impl Sync for CentralState
impl Unpin for CentralState
impl UnwindSafe for CentralState
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