[][src]Struct isilon::models::NfsNlmSessionsSession

pub struct NfsNlmSessionsSession {
    pub delegates: Option<Vec<i32>>,
    pub host_type: Option<String>,
    pub hostname: Option<String>,
    pub is_active: Option<bool>,
    pub last_modified: Option<i32>,
    pub node_ip: Option<String>,
    pub notify_attempts_remaining: Option<i32>,
    pub notify_error: Option<String>,
    pub notify_last_attempt: Option<i32>,
}

Fields

delegates: Option<Vec<i32>>host_type: Option<String>

The sort of host that this entry represents

hostname: Option<String>

The host being monitored

is_active: Option<bool>

Whether or not the client is actively being monitored

last_modified: Option<i32>

Unix time in seconds that the client was last modified (monitored or unmonitored)

node_ip: Option<String>

An IP address for which NSM has client records

notify_attempts_remaining: Option<i32>

Number of times we will attempt to notify this client before giving up

notify_error: Option<String>

Last error recieved attempting to notify this client

notify_last_attempt: Option<i32>

Unix time in seconds when we last attempted to notify this clients

Trait Implementations

impl Debug for NfsNlmSessionsSession[src]

impl Serialize for NfsNlmSessionsSession[src]

impl<'de> Deserialize<'de> for NfsNlmSessionsSession[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