[][src]Struct oration::config::SMTPServer

pub struct SMTPServer {
    pub host: String,
    pub user_name: String,
    pub password: String,
}

Details of the SMTP server which the notification system should connect to.

Fields

SMTP host url. (No need for a protocol header).

Username for authentication.

Password for authentication.

Trait Implementations

impl Debug for SMTPServer
[src]

Formats the value using the given formatter. Read more

impl<'a> IntoIterator for &'a SMTPServer
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

Auto Trait Implementations

impl Send for SMTPServer

impl Sync for SMTPServer