Struct stm32wb_hci::event::command::LeReadSupportedStates
source · pub struct LeReadSupportedStates<VS> {
pub status: Status<VS>,
pub supported_states: LeStates,
}Expand description
Parameters returned by the LE Read Supported States command.
Fields§
§status: Status<VS>Did the command fail, and if so, how?
supported_states: LeStatesStates or state combinations supported by the Controller. Multiple state and state combinations may be supported.
Trait Implementations§
source§impl<VS: Clone> Clone for LeReadSupportedStates<VS>
impl<VS: Clone> Clone for LeReadSupportedStates<VS>
source§fn clone(&self) -> LeReadSupportedStates<VS>
fn clone(&self) -> LeReadSupportedStates<VS>
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<VS: Debug> Debug for LeReadSupportedStates<VS>
impl<VS: Debug> Debug for LeReadSupportedStates<VS>
impl<VS: Copy> Copy for LeReadSupportedStates<VS>
Auto Trait Implementations§
impl<VS> RefUnwindSafe for LeReadSupportedStates<VS>where VS: RefUnwindSafe,
impl<VS> Send for LeReadSupportedStates<VS>where VS: Send,
impl<VS> Sync for LeReadSupportedStates<VS>where VS: Sync,
impl<VS> Unpin for LeReadSupportedStates<VS>where VS: Unpin,
impl<VS> UnwindSafe for LeReadSupportedStates<VS>where VS: UnwindSafe,
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