pub struct DispatchStats {
pub dispatched: u64,
pub pending: u64,
pub expired: u64,
pub unbound: u64,
pub esc: u64,
}Expand description
Counters for evidence rows and hint-usage feedback.
Fields§
§dispatched: u64Bindings fired.
pending: u64Keys that entered a chord prefix.
expired: u64Prefixes abandoned.
unbound: u64Keys that matched nothing.
esc: u64Esc / Esc Esc verdicts handed back unbound (see Dispatch::Esc).
Trait Implementations§
Source§impl Clone for DispatchStats
impl Clone for DispatchStats
Source§fn clone(&self) -> DispatchStats
fn clone(&self) -> DispatchStats
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 moreimpl Copy for DispatchStats
Source§impl Debug for DispatchStats
impl Debug for DispatchStats
Source§impl Default for DispatchStats
impl Default for DispatchStats
Source§fn default() -> DispatchStats
fn default() -> DispatchStats
Returns the “default value” for a type. Read more
impl Eq for DispatchStats
Source§impl PartialEq for DispatchStats
impl PartialEq for DispatchStats
impl StructuralPartialEq for DispatchStats
Auto Trait Implementations§
impl Freeze for DispatchStats
impl RefUnwindSafe for DispatchStats
impl Send for DispatchStats
impl Sync for DispatchStats
impl Unpin for DispatchStats
impl UnsafeUnpin for DispatchStats
impl UnwindSafe for DispatchStats
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