pub struct BleStatus {
pub profile: u8,
pub state: BleState,
}Expand description
Unified BLE status: which profile is active and what the BLE is doing.
Fields§
§profile: u8§state: BleStateTrait Implementations§
impl Copy for BleStatus
Source§impl<'de> Deserialize<'de> for BleStatus
impl<'de> Deserialize<'de> for BleStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for BleStatus
Source§impl MaxSize for BleStatus
impl MaxSize for BleStatus
Source§const POSTCARD_MAX_SIZE: usize
const POSTCARD_MAX_SIZE: usize
The maximum possible size that the serialization of this
type can have, in bytes.
impl StructuralPartialEq for BleStatus
Auto Trait Implementations§
impl Freeze for BleStatus
impl RefUnwindSafe for BleStatus
impl Send for BleStatus
impl Sync for BleStatus
impl Unpin for BleStatus
impl UnsafeUnpin for BleStatus
impl UnwindSafe for BleStatus
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