[][src]Struct isilon::models::DiagnosticsNetloggerSettings

pub struct DiagnosticsNetloggerSettings {
    pub clients: Option<String>,
    pub count: Option<i32>,
    pub duration: Option<i32>,
    pub interfaces: Option<String>,
    pub nodelist: Option<String>,
    pub ports: Option<String>,
    pub protocols: Option<String>,
    pub snaplength: Option<u64>,
}

Fields

clients: Option<String>

IP Addresses or host names of clients

count: Option<i32>

Count of capture files to keep, 0 is infinite.

duration: Option<i32>

Duration in minutes of each capture file

interfaces: Option<String>

Network interfaces to capture on.

nodelist: Option<String>

List of nodes, or empty for all

ports: Option<String>

List of Integers of TCP or UDP ports

protocols: Option<String>

which protocol(s) to gather on

snaplength: Option<u64>

Amount of bytes per packet to capture

Trait Implementations

impl Debug for DiagnosticsNetloggerSettings[src]

impl Serialize for DiagnosticsNetloggerSettings[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T