Enum samotop::model::command::SmtpCommand[][src]

pub enum SmtpCommand {
    StartTls,
    Helo(SmtpHelo),
    Mail(SmtpMail),
    Rcpt(SmtpPath),
    Expn(String),
    Vrfy(String),
    Help(Vec<String>),
    Noop(Vec<String>),
    Quit,
    Rset,
    Data,
    Turn,
    Unknown(String),
}

Variants

Trait Implementations

impl Eq for SmtpCommand
[src]

impl PartialEq for SmtpCommand
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for SmtpCommand
[src]

Formats the value using the given formatter. Read more

impl Clone for SmtpCommand
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for SmtpCommand

impl Sync for SmtpCommand