pub enum SmtpAuthResultCode {
Unknown,
NoneSmtp,
Pass,
Fail,
TempError,
PermError,
}Expand description
SMTP AUTH Result Codes - s.2.7.4 This SMTP Authentication (not DKIM)
Variants§
Unknown
Result not seen
NoneSmtp
SMTP authentication was not attempted.
Pass
The SMTP client authenticated to the server
Fail
The SMTP client attempted to authenticate but was not successful
TempError
The SMTP client attempted to authenticate but was not able to complete the attempt due to some error that is likely transient in nature
PermError
The SMTP client attempted to authenticate but was not able to complete the attempt due to some error that is likely not transient in nature
Trait Implementations§
Source§impl Clone for SmtpAuthResultCode
impl Clone for SmtpAuthResultCode
Source§fn clone(&self) -> SmtpAuthResultCode
fn clone(&self) -> SmtpAuthResultCode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SmtpAuthResultCode
impl Debug for SmtpAuthResultCode
Source§impl Default for SmtpAuthResultCode
impl Default for SmtpAuthResultCode
Source§fn default() -> SmtpAuthResultCode
fn default() -> SmtpAuthResultCode
Returns the “default value” for a type. Read more
Source§impl PartialEq for SmtpAuthResultCode
impl PartialEq for SmtpAuthResultCode
impl StructuralPartialEq for SmtpAuthResultCode
Auto Trait Implementations§
impl Freeze for SmtpAuthResultCode
impl RefUnwindSafe for SmtpAuthResultCode
impl Send for SmtpAuthResultCode
impl Sync for SmtpAuthResultCode
impl Unpin for SmtpAuthResultCode
impl UnwindSafe for SmtpAuthResultCode
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