pub struct ServerStats {
pub requests: u64,
pub responses: u64,
pub dropped_rate_limit: u64,
pub kiss_of_death: u64,
pub interleaved_responses: u64,
pub refused: u64,
pub evicted: u64,
}Expand description
Aggregate counters for the status.serverstats op.
Fields§
§requests: u64§responses: u64§dropped_rate_limit: u64§kiss_of_death: u64§interleaved_responses: u64§refused: u64Requests refused before any per-client work (bad mode, too short).
evicted: u64Clients evicted from the table because it was full.
Trait Implementations§
Source§impl Clone for ServerStats
impl Clone for ServerStats
Source§fn clone(&self) -> ServerStats
fn clone(&self) -> ServerStats
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 ServerStats
Source§impl Debug for ServerStats
impl Debug for ServerStats
Source§impl Default for ServerStats
impl Default for ServerStats
Source§fn default() -> ServerStats
fn default() -> ServerStats
Returns the “default value” for a type. Read more
impl Eq for ServerStats
Source§impl PartialEq for ServerStats
impl PartialEq for ServerStats
impl StructuralPartialEq for ServerStats
Auto Trait Implementations§
impl Freeze for ServerStats
impl RefUnwindSafe for ServerStats
impl Send for ServerStats
impl Sync for ServerStats
impl Unpin for ServerStats
impl UnsafeUnpin for ServerStats
impl UnwindSafe for ServerStats
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