pub struct FlowEntry<S> {
pub stats: FlowStats,
pub state: FlowState,
pub history: HistoryString,
pub user: S,
/* private fields */
}Available on crate feature
tracker only.Expand description
Per-flow accounting + user state.
Fields§
§stats: FlowStats§state: FlowState§history: HistoryString§user: STrait Implementations§
Auto Trait Implementations§
impl<S> Freeze for FlowEntry<S>where
S: Freeze,
impl<S> RefUnwindSafe for FlowEntry<S>where
S: RefUnwindSafe,
impl<S> Send for FlowEntry<S>where
S: Send,
impl<S> Sync for FlowEntry<S>where
S: Sync,
impl<S> Unpin for FlowEntry<S>where
S: Unpin,
impl<S> UnsafeUnpin for FlowEntry<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for FlowEntry<S>where
S: UnwindSafe,
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