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 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<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> Freeze for LocalSupportedCommands<VS>where
VS: Freeze,
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