[][src]Struct isilon::models::EventChannelParameters

pub struct EventChannelParameters {
    pub address: Option<Vec<String>>,
    pub batch: Option<String>,
    pub batch_period: Option<i32>,
    pub custom_template: Option<String>,
    pub send_as: Option<String>,
    pub smtp_host: Option<String>,
    pub smtp_password: Option<String>,
    pub smtp_port: Option<i32>,
    pub smtp_security: Option<String>,
    pub smtp_use_auth: Option<bool>,
    pub smtp_username: Option<String>,
    pub subject: Option<String>,
}

Fields

address: Option<Vec<String>>

Email addresses to send to.

batch: Option<String>

Batching criterion.

batch_period: Option<i32>

Period over which batching is to be performed.

custom_template: Option<String>

Path to custom notification template.

send_as: Option<String>

Email address to use as from.

smtp_host: Option<String>

SMTP relay host.

smtp_password: Option<String>

Password for SMTP authentication - only if smtp_use_auth true.

smtp_port: Option<i32>

SMTP relay port - optional defaults to 25.

smtp_security: Option<String>

Encryption protocol to use for SMTP.

smtp_use_auth: Option<bool>

Use SMTP authentication - optional defaulst to false.

smtp_username: Option<String>

Username for SMTP authentication - only if smtp_use_auth true.

subject: Option<String>

Subject for emails.

Trait Implementations

impl Debug for EventChannelParameters[src]

impl Serialize for EventChannelParameters[src]

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