pub struct ShardShutdownStats {
pub initial_commits_enqueued: usize,
pub excess_execute_if_cacheds: usize,
pub excess_execute_muts: usize,
pub excess_executes: usize,
pub take_data_requests: usize,
pub loads_completed: usize,
pub loads_failed: usize,
pub commits_completed: usize,
pub commits_failed: usize,
}Fields§
§initial_commits_enqueued: usizeThe number of commits in the commit queue at the time of the first graceful shutdown signal
excess_execute_if_cacheds: usizeThe number of ExecuteIfCached calls after the first graceful shutdown signal
excess_execute_muts: usizeThe number of ExecuteMut calls after the first graceful shutdown signal
excess_executes: usizeThe number of Execute calls after the first graceful shutdown signal
take_data_requests: usizeThe number of TakeData requests made after the first graceful shutdown signal
loads_completed: usizeThe number of load tasks completed during the shutdown drain
loads_failed: usizeThe number of load tasks failed during the shutdown drain
commits_completed: usizeThe number of commit tasks completed during the shutdown drain
commits_failed: usizeThe number of commit tasks failed during the shutdown drain
Trait Implementations§
Source§impl Clone for ShardShutdownStats
impl Clone for ShardShutdownStats
Source§fn clone(&self) -> ShardShutdownStats
fn clone(&self) -> ShardShutdownStats
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 moreSource§impl Debug for ShardShutdownStats
impl Debug for ShardShutdownStats
Source§impl Default for ShardShutdownStats
impl Default for ShardShutdownStats
Source§fn default() -> ShardShutdownStats
fn default() -> ShardShutdownStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for ShardShutdownStats
impl PartialEq for ShardShutdownStats
impl StructuralPartialEq for ShardShutdownStats
Auto Trait Implementations§
impl Freeze for ShardShutdownStats
impl RefUnwindSafe for ShardShutdownStats
impl Send for ShardShutdownStats
impl Sync for ShardShutdownStats
impl Unpin for ShardShutdownStats
impl UnwindSafe for ShardShutdownStats
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