pub struct ReliableStatelessStats {
pub cached_changes: usize,
pub pending_retransmits: usize,
pub lowest_unacked: i64,
pub heartbeat_count: u32,
}Expand description
Statistik-Snapshot (T12).
Fields§
§cached_changes: usizeAnzahl Cache-Eintraege.
pending_retransmits: usizeAnzahl pendender Retransmits (requested.len()).
lowest_unacked: i64Aktueller lowest_unacked (0 = noch unbekannt).
heartbeat_count: u32Heartbeat-Counter (modulo-u32).
Trait Implementations§
Source§impl Clone for ReliableStatelessStats
impl Clone for ReliableStatelessStats
Source§fn clone(&self) -> ReliableStatelessStats
fn clone(&self) -> ReliableStatelessStats
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 ReliableStatelessStats
impl Debug for ReliableStatelessStats
Source§impl Default for ReliableStatelessStats
impl Default for ReliableStatelessStats
Source§fn default() -> ReliableStatelessStats
fn default() -> ReliableStatelessStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReliableStatelessStats
impl PartialEq for ReliableStatelessStats
Source§fn eq(&self, other: &ReliableStatelessStats) -> bool
fn eq(&self, other: &ReliableStatelessStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ReliableStatelessStats
impl Eq for ReliableStatelessStats
impl StructuralPartialEq for ReliableStatelessStats
Auto Trait Implementations§
impl Freeze for ReliableStatelessStats
impl RefUnwindSafe for ReliableStatelessStats
impl Send for ReliableStatelessStats
impl Sync for ReliableStatelessStats
impl Unpin for ReliableStatelessStats
impl UnsafeUnpin for ReliableStatelessStats
impl UnwindSafe for ReliableStatelessStats
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