[][src]Struct suricata_ipc::prelude::EveFlowInfo

pub struct EveFlowInfo {
    pub age: usize,
    pub pkts_toserver: usize,
    pub pkts_toclient: usize,
    pub bytes_toserver: usize,
    pub bytes_toclient: usize,
    pub start: DateTime<Utc>,
    pub end: DateTime<Utc>,
    pub alerted: bool,
    pub state: State,
    pub reason: String,
}

Fields

age: usizepkts_toserver: usizepkts_toclient: usizebytes_toserver: usizebytes_toclient: usizestart: DateTime<Utc>end: DateTime<Utc>alerted: boolstate: Statereason: String

Trait Implementations

impl Debug for FlowInfo[src]

impl<'de> Deserialize<'de> for FlowInfo[src]

impl Serialize for FlowInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,