pub struct LogSyncMetrics {
pub total_operations_local: Option<u64>,
pub total_operations_remote: Option<u64>,
pub total_operations_received: u64,
pub total_operations_sent: u64,
pub total_bytes_local: Option<u64>,
pub total_bytes_remote: Option<u64>,
pub total_bytes_received: u64,
pub total_bytes_sent: u64,
}Expand description
Sync metrics emitted in event messages.
Fields§
§total_operations_local: Option<u64>§total_operations_remote: Option<u64>§total_operations_received: u64§total_operations_sent: u64§total_bytes_local: Option<u64>§total_bytes_remote: Option<u64>§total_bytes_received: u64§total_bytes_sent: u64Trait Implementations§
Source§impl Clone for LogSyncMetrics
impl Clone for LogSyncMetrics
Source§fn clone(&self) -> LogSyncMetrics
fn clone(&self) -> LogSyncMetrics
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 LogSyncMetrics
impl Debug for LogSyncMetrics
Source§impl Default for LogSyncMetrics
impl Default for LogSyncMetrics
Source§fn default() -> LogSyncMetrics
fn default() -> LogSyncMetrics
Returns the “default value” for a type. Read more
Source§impl PartialEq for LogSyncMetrics
impl PartialEq for LogSyncMetrics
impl StructuralPartialEq for LogSyncMetrics
Auto Trait Implementations§
impl Freeze for LogSyncMetrics
impl RefUnwindSafe for LogSyncMetrics
impl Send for LogSyncMetrics
impl Sync for LogSyncMetrics
impl Unpin for LogSyncMetrics
impl UnwindSafe for LogSyncMetrics
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