pub enum StartMailResult {
Failed(StartMailFailure, String),
Accepted(Transaction),
}Variants§
Failed(StartMailFailure, String)
Failure with explanation that should include the ID
Accepted(Transaction)
250 Mail command accepted
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StartMailResult
impl !RefUnwindSafe for StartMailResult
impl Send for StartMailResult
impl Sync for StartMailResult
impl Unpin for StartMailResult
impl !UnwindSafe for StartMailResult
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