pub struct OutboundReply {
pub to: String,
pub subject: String,
pub text: String,
}Expand description
A fresh (non-threaded) mail message to send.
One recipient, one subject, one plaintext body. There is no inbound message to thread against — this transport exists solely for the email-verification magic-link ceremony.
Fields§
§to: StringRecipient address.
subject: StringSubject line.
text: StringPlaintext body.
Trait Implementations§
Source§impl Clone for OutboundReply
impl Clone for OutboundReply
Source§fn clone(&self) -> OutboundReply
fn clone(&self) -> OutboundReply
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OutboundReply
impl Debug for OutboundReply
impl Eq for OutboundReply
Source§impl PartialEq for OutboundReply
impl PartialEq for OutboundReply
impl StructuralPartialEq for OutboundReply
Auto Trait Implementations§
impl Freeze for OutboundReply
impl RefUnwindSafe for OutboundReply
impl Send for OutboundReply
impl Sync for OutboundReply
impl Unpin for OutboundReply
impl UnsafeUnpin for OutboundReply
impl UnwindSafe for OutboundReply
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