pub struct SyncStats {
pub bytes_sent: u64,
pub bytes_received: u64,
pub syncs_completed: u32,
pub pending_operations: usize,
pub pending_tx_chunks: usize,
pub pending_rx_messages: usize,
}Expand description
Sync statistics
Fields§
§bytes_sent: u64Total bytes sent
bytes_received: u64Total bytes received
syncs_completed: u32Number of completed syncs
pending_operations: usizePending operations in batch
pending_tx_chunks: usizePending TX chunks
pending_rx_messages: usizePending RX messages being reassembled
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncStats
impl RefUnwindSafe for SyncStats
impl Send for SyncStats
impl Sync for SyncStats
impl Unpin for SyncStats
impl UnwindSafe for SyncStats
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