pub struct CommandTally {
pub evals: u64,
pub type_queries: u64,
pub checks: u64,
pub loads: u64,
pub quits: u64,
pub helps: u64,
pub other: u64,
}Expand description
Tally of REPL command types seen during a session.
Fields§
§evals: u64§type_queries: u64§checks: u64§loads: u64§quits: u64§helps: u64§other: u64Implementations§
Trait Implementations§
Source§impl Clone for CommandTally
impl Clone for CommandTally
Source§fn clone(&self) -> CommandTally
fn clone(&self) -> CommandTally
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 CommandTally
impl Debug for CommandTally
Source§impl Default for CommandTally
impl Default for CommandTally
Source§fn default() -> CommandTally
fn default() -> CommandTally
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CommandTally
impl RefUnwindSafe for CommandTally
impl Send for CommandTally
impl Sync for CommandTally
impl Unpin for CommandTally
impl UnsafeUnpin for CommandTally
impl UnwindSafe for CommandTally
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