pub struct ShutdownReport {
pub completions_published: u64,
pub completions_receiver_dropped: u64,
pub completions_invariant_failed: u64,
pub runtime_shutdown_terminals: u64,
}Expand description
Final shutdown report when the runtime reaches Stopped (v2).
Fields§
§completions_published: u64Admitted transactions that received a completion publication attempt.
completions_receiver_dropped: u64Completions where the host had dropped its receiver.
completions_invariant_failed: u64Completions that hit an invariant on the sender.
runtime_shutdown_terminals: u64Transactions terminated because of runtime shutdown.
Trait Implementations§
Source§impl Clone for ShutdownReport
impl Clone for ShutdownReport
Source§fn clone(&self) -> ShutdownReport
fn clone(&self) -> ShutdownReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ShutdownReport
impl Debug for ShutdownReport
Source§impl Default for ShutdownReport
impl Default for ShutdownReport
Source§fn default() -> ShutdownReport
fn default() -> ShutdownReport
Returns the “default value” for a type. Read more
impl Eq for ShutdownReport
Source§impl PartialEq for ShutdownReport
impl PartialEq for ShutdownReport
impl StructuralPartialEq for ShutdownReport
Auto Trait Implementations§
impl Freeze for ShutdownReport
impl RefUnwindSafe for ShutdownReport
impl Send for ShutdownReport
impl Sync for ShutdownReport
impl Unpin for ShutdownReport
impl UnsafeUnpin for ShutdownReport
impl UnwindSafe for ShutdownReport
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