[][src]Struct sysmon::NetworkEventData

pub struct NetworkEventData {
    pub utc_time: UtcTime,
    pub process_guid: ProcessGuid,
    pub process_id: u64,
    pub image: Image,
    pub user: Option<User>,
    pub protocol: String,
    pub initiated: bool,
    pub source_is_ipv6: String,
    pub source_ip: String,
    pub source_hostname: Option<String>,
    pub source_port: u16,
    pub source_port_name: Option<String>,
    pub destination_is_ipv6: String,
    pub destination_ip: String,
    pub destination_hostname: Option<String>,
    pub destination_port: u16,
    pub destination_port_name: Option<String>,
}

Fields

utc_time: UtcTimeprocess_guid: ProcessGuidprocess_id: u64image: Imageuser: Option<User>protocol: Stringinitiated: boolsource_is_ipv6: Stringsource_ip: Stringsource_hostname: Option<String>source_port: u16source_port_name: Option<String>destination_is_ipv6: Stringdestination_ip: Stringdestination_hostname: Option<String>destination_port: u16destination_port_name: Option<String>

Trait Implementations

impl Clone for NetworkEventData[src]

impl Debug for NetworkEventData[src]

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

impl Hash for NetworkEventData[src]

impl TryFrom<IntermediaryEventData> for NetworkEventData[src]

type Error = Error

The type returned in the event of a conversion error.

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: Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.