pub enum MessageStats {
MessageStats(MessageStats),
}Expand description
Variants§
MessageStats(MessageStats)
Trait Implementations§
Source§impl Clone for MessageStats
impl Clone for MessageStats
Source§fn clone(&self) -> MessageStats
fn clone(&self) -> MessageStats
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 Debug for MessageStats
impl Debug for MessageStats
Source§impl Deserializable for MessageStats
impl Deserializable for MessageStats
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<MessageStats> for MessageStats
impl From<MessageStats> for MessageStats
Source§fn from(x: MessageStats) -> Self
fn from(x: MessageStats) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MessageStats
impl PartialEq for MessageStats
Source§impl Serializable for MessageStats
impl Serializable for MessageStats
Source§impl TryFrom<MessageStats> for MessageStats
impl TryFrom<MessageStats> for MessageStats
Source§type Error = MessageStats
type Error = MessageStats
The type returned in the event of a conversion error.
impl StructuralPartialEq for MessageStats
Auto Trait Implementations§
impl Freeze for MessageStats
impl RefUnwindSafe for MessageStats
impl Send for MessageStats
impl Sync for MessageStats
impl Unpin for MessageStats
impl UnsafeUnpin for MessageStats
impl UnwindSafe for MessageStats
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