pub struct RuntimeStats {
pub announces_queued: u32,
pub outbound_sent: u32,
pub outbound_deferred: u32,
pub inbound_accepted: u32,
pub inbound_rejected: u32,
pub announces_received: u32,
pub lxmf_messages_received: u32,
}Fields§
§announces_queued: u32§outbound_sent: u32§outbound_deferred: u32§inbound_accepted: u32§inbound_rejected: u32§announces_received: u32§lxmf_messages_received: u32Trait Implementations§
Source§impl Clone for RuntimeStats
impl Clone for RuntimeStats
Source§fn clone(&self) -> RuntimeStats
fn clone(&self) -> RuntimeStats
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 moreimpl Copy for RuntimeStats
Source§impl Debug for RuntimeStats
impl Debug for RuntimeStats
Source§impl Default for RuntimeStats
impl Default for RuntimeStats
Source§fn default() -> RuntimeStats
fn default() -> RuntimeStats
Returns the “default value” for a type. Read more
impl Eq for RuntimeStats
Source§impl PartialEq for RuntimeStats
impl PartialEq for RuntimeStats
Source§fn eq(&self, other: &RuntimeStats) -> bool
fn eq(&self, other: &RuntimeStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RuntimeStats
Auto Trait Implementations§
impl Freeze for RuntimeStats
impl RefUnwindSafe for RuntimeStats
impl Send for RuntimeStats
impl Sync for RuntimeStats
impl Unpin for RuntimeStats
impl UnsafeUnpin for RuntimeStats
impl UnwindSafe for RuntimeStats
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