pub struct StabilityStats {
pub peer_count: usize,
pub local_operations: u64,
pub stable_operations: u64,
pub unstable_operations: u64,
pub has_quorum: bool,
}Expand description
Statistics about stability.
Fields§
§peer_count: usize§local_operations: u64§stable_operations: u64§unstable_operations: u64§has_quorum: boolTrait Implementations§
Source§impl Clone for StabilityStats
impl Clone for StabilityStats
Source§fn clone(&self) -> StabilityStats
fn clone(&self) -> StabilityStats
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 StabilityStats
impl RefUnwindSafe for StabilityStats
impl Send for StabilityStats
impl Sync for StabilityStats
impl Unpin for StabilityStats
impl UnwindSafe for StabilityStats
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