pub struct GroupCount;Expand description
Count of supported groups command
Trait Implementations§
Source§impl Clone for GroupCount
impl Clone for GroupCount
Source§fn clone(&self) -> GroupCount
fn clone(&self) -> GroupCount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GroupCount
impl Debug for GroupCount
Source§impl McuMgrCommand for GroupCount
impl McuMgrCommand for GroupCount
Source§type Payload = GroupCount
type Payload = GroupCount
the data payload type
Source§type Response = GroupCountResponse
type Response = GroupCountResponse
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
Source§impl PartialEq for GroupCount
impl PartialEq for GroupCount
Source§fn eq(&self, other: &GroupCount) -> bool
fn eq(&self, other: &GroupCount) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GroupCount
impl Serialize for GroupCount
impl Eq for GroupCount
impl StructuralPartialEq for GroupCount
Auto Trait Implementations§
impl Freeze for GroupCount
impl RefUnwindSafe for GroupCount
impl Send for GroupCount
impl Sync for GroupCount
impl Unpin for GroupCount
impl UnsafeUnpin for GroupCount
impl UnwindSafe for GroupCount
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more