pub struct LoadStats {
pub nclients: u64,
pub bytesin: u64,
pub bytesout: u64,
}Expand description
Aggregated server statistics from load-stats.
Wire format: SUCCESS: nclients=N,bytesin=N,bytesout=N
Fields§
§nclients: u64Number of currently connected clients.
bytesin: u64Total bytes received by the server.
bytesout: u64Total bytes sent by the server.
Trait Implementations§
impl Copy for LoadStats
impl Eq for LoadStats
impl StructuralPartialEq for LoadStats
Auto Trait Implementations§
impl Freeze for LoadStats
impl RefUnwindSafe for LoadStats
impl Send for LoadStats
impl Sync for LoadStats
impl Unpin for LoadStats
impl UnsafeUnpin for LoadStats
impl UnwindSafe for LoadStats
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