pub enum PairingStatus {
NotPaired,
Pairing,
Paired,
Unknown,
}
Expand description
The pairing status of a bluetooth device
Variants§
NotPaired
The device is not paired
Pairing
The device is in the pairing process
Paired
The device is paired
Unknown
The status is unknown or invalid
Auto Trait Implementations§
impl Freeze for PairingStatus
impl RefUnwindSafe for PairingStatus
impl Send for PairingStatus
impl Sync for PairingStatus
impl Unpin for PairingStatus
impl UnwindSafe for PairingStatus
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