pub struct MemoryPoolStatistics;Expand description
Memory Pool statistics command
Trait Implementations§
Source§impl Clone for MemoryPoolStatistics
impl Clone for MemoryPoolStatistics
Source§fn clone(&self) -> MemoryPoolStatistics
fn clone(&self) -> MemoryPoolStatistics
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 MemoryPoolStatistics
impl Debug for MemoryPoolStatistics
Source§impl McuMgrCommand for MemoryPoolStatistics
impl McuMgrCommand for MemoryPoolStatistics
Source§type Payload = MemoryPoolStatistics
type Payload = MemoryPoolStatistics
the data payload type
Source§type Response = MemoryPoolStatisticsResponse
type Response = MemoryPoolStatisticsResponse
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 MemoryPoolStatistics
impl PartialEq for MemoryPoolStatistics
Source§fn eq(&self, other: &MemoryPoolStatistics) -> bool
fn eq(&self, other: &MemoryPoolStatistics) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MemoryPoolStatistics
impl Serialize for MemoryPoolStatistics
impl Eq for MemoryPoolStatistics
impl StructuralPartialEq for MemoryPoolStatistics
Auto Trait Implementations§
impl Freeze for MemoryPoolStatistics
impl RefUnwindSafe for MemoryPoolStatistics
impl Send for MemoryPoolStatistics
impl Sync for MemoryPoolStatistics
impl Unpin for MemoryPoolStatistics
impl UnsafeUnpin for MemoryPoolStatistics
impl UnwindSafe for MemoryPoolStatistics
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