pub struct ReplicationTrackerStats {
pub entries: usize,
pub sent_records: usize,
pub acked_records: usize,
pub pruned_records: usize,
}Expand description
Replication tracker statistics.
Fields§
§entries: usizeCurrently tracked entries.
sent_records: usizeTotal record insertions or updates.
acked_records: usizeTotal ACK updates applied.
pruned_records: usizeRecords pruned by explicit cleanup.
Trait Implementations§
Source§impl Clone for ReplicationTrackerStats
impl Clone for ReplicationTrackerStats
Source§fn clone(&self) -> ReplicationTrackerStats
fn clone(&self) -> ReplicationTrackerStats
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 ReplicationTrackerStats
Source§impl Debug for ReplicationTrackerStats
impl Debug for ReplicationTrackerStats
Source§impl Default for ReplicationTrackerStats
impl Default for ReplicationTrackerStats
Source§fn default() -> ReplicationTrackerStats
fn default() -> ReplicationTrackerStats
Returns the “default value” for a type. Read more
impl Eq for ReplicationTrackerStats
Source§impl PartialEq for ReplicationTrackerStats
impl PartialEq for ReplicationTrackerStats
impl StructuralPartialEq for ReplicationTrackerStats
Auto Trait Implementations§
impl Freeze for ReplicationTrackerStats
impl RefUnwindSafe for ReplicationTrackerStats
impl Send for ReplicationTrackerStats
impl Sync for ReplicationTrackerStats
impl Unpin for ReplicationTrackerStats
impl UnsafeUnpin for ReplicationTrackerStats
impl UnwindSafe for ReplicationTrackerStats
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