pub struct Totals {
pub clients: u64,
pub connections: u64,
pub commands: u64,
}Expand description
Every thread’s Stats added together, which is what INFO answers.
Fields§
§clients: u64Connections open right now.
connections: u64Connections accepted since the server started.
commands: u64Commands run since the server started.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Totals
impl RefUnwindSafe for Totals
impl Send for Totals
impl Sync for Totals
impl Unpin for Totals
impl UnsafeUnpin for Totals
impl UnwindSafe for Totals
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