[][src]Struct isilon::models::EventChannel

pub struct EventChannel {
    pub allowed_nodes: Option<Vec<i32>>,
    pub enabled: Option<bool>,
    pub excluded_nodes: Option<Vec<i32>>,
    pub parameters: Option<EventChannelParameters>,
    pub system: Option<bool>,
    pub _type: Option<String>,
}

Fields

allowed_nodes: Option<Vec<i32>>

Nodes (LNNs) that can be masters for this channel

enabled: Option<bool>

Channel is to be used or not

excluded_nodes: Option<Vec<i32>>

Nodes (LNNs) that can NOT be the masters for this channel

parameters: Option<EventChannelParameters>

Parameters to be used for an smtp channel

system: Option<bool>

Channel is a pre-defined system channel

_type: Option<String>

The mechanism used by the channel

Trait Implementations

impl Debug for EventChannel[src]

impl Serialize for EventChannel[src]

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