pub struct GroupData<'a> {
pub name: &'a str,
}Expand description
Statistics: group data command
Fields§
§name: &'a strgroup name
Trait Implementations§
Source§impl McuMgrCommand for GroupData<'_>
impl McuMgrCommand for GroupData<'_>
Source§type Response = GroupDataResponse
type Response = GroupDataResponse
the response type of the command
Source§fn is_write_operation(&self) -> bool
fn is_write_operation(&self) -> bool
whether this command is a read or write operation
Source§fn command_id(&self) -> u8
fn command_id(&self) -> u8
the command ID
impl<'a> Eq for GroupData<'a>
impl<'a> StructuralPartialEq for GroupData<'a>
Auto Trait Implementations§
impl<'a> Freeze for GroupData<'a>
impl<'a> RefUnwindSafe for GroupData<'a>
impl<'a> Send for GroupData<'a>
impl<'a> Sync for GroupData<'a>
impl<'a> Unpin for GroupData<'a>
impl<'a> UnsafeUnpin for GroupData<'a>
impl<'a> UnwindSafe for GroupData<'a>
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