pub struct ReplicationHealth {
pub total_queued_operations: usize,
pub failed_nodes_count: usize,
pub replication_lag: Duration,
pub is_healthy: bool,
}
Expand description
Overall replication health
Fields§
§total_queued_operations: usize
§failed_nodes_count: usize
§replication_lag: Duration
§is_healthy: bool
Trait Implementations§
Source§impl Clone for ReplicationHealth
impl Clone for ReplicationHealth
Source§fn clone(&self) -> ReplicationHealth
fn clone(&self) -> ReplicationHealth
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 ReplicationHealth
impl RefUnwindSafe for ReplicationHealth
impl Send for ReplicationHealth
impl Sync for ReplicationHealth
impl Unpin for ReplicationHealth
impl UnwindSafe for ReplicationHealth
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