pub enum AddRecipientResult {
Inconclusive(Recipient),
Failed(AddRecipientFailure, String),
AcceptedWithNewPath(SmtpPath),
Accepted,
}
Variants§
Inconclusive(Recipient)
Failed(AddRecipientFailure, String)
Failed with description that should include the ID, see AddRecipientFailure
AcceptedWithNewPath(SmtpPath)
251 User not local; will forward to
Accepted
250 Requested mail action okay, completed
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AddRecipientResult
impl RefUnwindSafe for AddRecipientResult
impl Send for AddRecipientResult
impl Sync for AddRecipientResult
impl Unpin for AddRecipientResult
impl UnwindSafe for AddRecipientResult
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