pub enum Command {
Show 14 variants
Ehlo(Domain),
Helo(Domain),
MailFrom {
address: ReversePath,
parameters: Vec<EsmtpParameter>,
},
RcptTo {
address: ForwardPath,
parameters: Vec<EsmtpParameter>,
},
Data,
DataDot,
Rset,
Quit,
Vrfy(String),
Expn(String),
Help(Option<String>),
Noop(Option<String>),
StartTls,
Auth {
sasl_mech: String,
initial_response: Option<String>,
},
}
Variants§
Ehlo(Domain)
Helo(Domain)
MailFrom
RcptTo
Data
DataDot
Rset
Quit
Vrfy(String)
Expn(String)
Help(Option<String>)
Noop(Option<String>)
StartTls
Auth
Implementations§
source§impl Command
impl Command
pub fn parse(line: &str) -> Result<Self, String>
pub fn encode(&self) -> String
sourcepub fn client_timeout(&self, timeouts: &SmtpClientTimeouts) -> Duration
pub fn client_timeout(&self, timeouts: &SmtpClientTimeouts) -> Duration
Timeouts for reading the response
sourcepub fn client_timeout_request(&self, timeouts: &SmtpClientTimeouts) -> Duration
pub fn client_timeout_request(&self, timeouts: &SmtpClientTimeouts) -> Duration
Timeouts for writing the request
Trait Implementations§
impl Eq for Command
impl StructuralPartialEq for Command
Auto Trait Implementations§
impl Freeze for Command
impl RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl UnwindSafe for Command
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)