pub struct ReplicationStatusSnapshot {
pub node_statuses: HashMap<NodeId, NodeReplicationStatus>,
pub total_operations_processed: u64,
pub total_operations_failed: u64,
}
Expand description
Snapshot of replication status
Fields§
§node_statuses: HashMap<NodeId, NodeReplicationStatus>
§total_operations_processed: u64
§total_operations_failed: u64
Trait Implementations§
Source§impl Clone for ReplicationStatusSnapshot
impl Clone for ReplicationStatusSnapshot
Source§fn clone(&self) -> ReplicationStatusSnapshot
fn clone(&self) -> ReplicationStatusSnapshot
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 moreAuto Trait Implementations§
impl Freeze for ReplicationStatusSnapshot
impl RefUnwindSafe for ReplicationStatusSnapshot
impl Send for ReplicationStatusSnapshot
impl Sync for ReplicationStatusSnapshot
impl Unpin for ReplicationStatusSnapshot
impl UnwindSafe for ReplicationStatusSnapshot
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