pub struct FlowStats {
pub total_entry_points: usize,
pub total_flows: usize,
pub max_depth: usize,
pub avg_depth: f64,
}Fields§
§total_entry_points: usize§total_flows: usize§max_depth: usize§avg_depth: f64Trait Implementations§
Source§impl<'de> Deserialize<'de> for FlowStats
impl<'de> Deserialize<'de> for FlowStats
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 FlowStats
impl RefUnwindSafe for FlowStats
impl Send for FlowStats
impl Sync for FlowStats
impl Unpin for FlowStats
impl UnsafeUnpin for FlowStats
impl UnwindSafe for FlowStats
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