pub struct EngineStatistics {
pub current_phase: PhaseId,
pub last_committed_phase: PhaseId,
pub pending_batches_count: usize,
pub phases_count: usize,
pub active_nodes_count: usize,
pub has_quorum: bool,
pub is_active: bool,
pub state_version: u64,
}Fields§
§current_phase: PhaseId§last_committed_phase: PhaseId§pending_batches_count: usize§phases_count: usize§active_nodes_count: usize§has_quorum: bool§is_active: bool§state_version: u64Trait Implementations§
Source§impl Clone for EngineStatistics
impl Clone for EngineStatistics
Source§fn clone(&self) -> EngineStatistics
fn clone(&self) -> EngineStatistics
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 EngineStatistics
impl RefUnwindSafe for EngineStatistics
impl Send for EngineStatistics
impl Sync for EngineStatistics
impl Unpin for EngineStatistics
impl UnwindSafe for EngineStatistics
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