pub struct Responses {
pub total: u64,
pub ok: u64,
pub error: u64,
pub timeout: u64,
pub hit: u64,
pub miss: u64,
}
Fields§
§total: u64
total number of responses
ok: u64
number of responses that were successful
error: u64
number of responses that were unsuccessful
timeout: u64
number of responses that were missed due to timeout
hit: u64
number of read requests with a hit response
miss: u64
number of read requests with a miss response
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Responses
impl<'de> Deserialize<'de> for Responses
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Responses
impl RefUnwindSafe for Responses
impl Send for Responses
impl Sync for Responses
impl Unpin for Responses
impl UnwindSafe for Responses
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