pub struct ReplicationMetricsSnapshot {Show 15 fields
pub emitted_mutations: u64,
pub sent_batches: u64,
pub sent_records: u64,
pub sent_bytes_compressed: u64,
pub sent_bytes_uncompressed: u64,
pub compression_ns: u64,
pub queue_depth: usize,
pub queue_high_watermark: usize,
pub drops: u64,
pub backpressure_events: u64,
pub replica_applied: u64,
pub replica_skipped: u64,
pub replica_apply_ns: u64,
pub catch_up_backlog_count: u64,
pub catch_up_snapshot_count: u64,
}Fields§
§emitted_mutations: u64§sent_batches: u64§sent_records: u64§sent_bytes_compressed: u64§sent_bytes_uncompressed: u64§compression_ns: u64§queue_depth: usize§queue_high_watermark: usize§drops: u64§backpressure_events: u64§replica_applied: u64§replica_skipped: u64§replica_apply_ns: u64§catch_up_backlog_count: u64§catch_up_snapshot_count: u64Trait Implementations§
Source§impl Clone for ReplicationMetricsSnapshot
impl Clone for ReplicationMetricsSnapshot
Source§fn clone(&self) -> ReplicationMetricsSnapshot
fn clone(&self) -> ReplicationMetricsSnapshot
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 ReplicationMetricsSnapshot
impl Debug for ReplicationMetricsSnapshot
Source§impl Default for ReplicationMetricsSnapshot
impl Default for ReplicationMetricsSnapshot
Source§fn default() -> ReplicationMetricsSnapshot
fn default() -> ReplicationMetricsSnapshot
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReplicationMetricsSnapshot
impl PartialEq for ReplicationMetricsSnapshot
Source§fn eq(&self, other: &ReplicationMetricsSnapshot) -> bool
fn eq(&self, other: &ReplicationMetricsSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReplicationMetricsSnapshot
Auto Trait Implementations§
impl Freeze for ReplicationMetricsSnapshot
impl RefUnwindSafe for ReplicationMetricsSnapshot
impl Send for ReplicationMetricsSnapshot
impl Sync for ReplicationMetricsSnapshot
impl Unpin for ReplicationMetricsSnapshot
impl UnsafeUnpin for ReplicationMetricsSnapshot
impl UnwindSafe for ReplicationMetricsSnapshot
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