pub struct CorrelationStats {
pub active_requests: usize,
pub completed_requests: usize,
pub unique_correlations: usize,
}
Expand description
Correlation statistics
Fields§
§active_requests: usize
§completed_requests: usize
§unique_correlations: usize
Trait Implementations§
Source§impl Debug for CorrelationStats
impl Debug for CorrelationStats
Source§impl<'de> Deserialize<'de> for CorrelationStats
impl<'de> Deserialize<'de> for CorrelationStats
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 CorrelationStats
impl RefUnwindSafe for CorrelationStats
impl Send for CorrelationStats
impl Sync for CorrelationStats
impl Unpin for CorrelationStats
impl UnwindSafe for CorrelationStats
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