pub struct Flow {
pub flow_id: FlowID,
pub five_tuple: FiveTuple,
pub first_seen: Duration,
pub last_seen: Duration,
}Expand description
Network flow information
Fields§
§flow_id: FlowIDThe Flow identifier
five_tuple: FiveTupleThe FiveTuple identifying the Flow
first_seen: Durationtimestamp of first packet
last_seen: Durationtimestamp of last seen packet
Implementations§
Trait Implementations§
impl Eq for Flow
impl StructuralPartialEq for Flow
Auto Trait Implementations§
impl Freeze for Flow
impl RefUnwindSafe for Flow
impl Send for Flow
impl Sync for Flow
impl Unpin for Flow
impl UnwindSafe for Flow
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