Struct stm32wb_hci::event::command::LocalSupportedCommands
source · pub struct LocalSupportedCommands<VS> {
pub status: Status<VS>,
pub supported_commands: CommandFlags,
}Expand description
Values returned by the Read Local Supported Commands command.
Fields§
§status: Status<VS>Did the command fail, and if so, how?
supported_commands: CommandFlagsFlags for supported commands.
Trait Implementations§
source§impl<VS: Clone> Clone for LocalSupportedCommands<VS>
impl<VS: Clone> Clone for LocalSupportedCommands<VS>
source§fn clone(&self) -> LocalSupportedCommands<VS>
fn clone(&self) -> LocalSupportedCommands<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 LocalSupportedCommands<VS>
impl<VS: Debug> Debug for LocalSupportedCommands<VS>
impl<VS: Copy> Copy for LocalSupportedCommands<VS>
Auto Trait Implementations§
impl<VS> RefUnwindSafe for LocalSupportedCommands<VS>where VS: RefUnwindSafe,
impl<VS> Send for LocalSupportedCommands<VS>where VS: Send,
impl<VS> Sync for LocalSupportedCommands<VS>where VS: Sync,
impl<VS> Unpin for LocalSupportedCommands<VS>where VS: Unpin,
impl<VS> UnwindSafe for LocalSupportedCommands<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