pub struct EmailEnvelopeDetails {
pub to: String,
pub subject: String,
pub body: String,
}Fields§
§to: String§subject: String§body: StringImplementations§
Trait Implementations§
Source§impl Clone for EmailEnvelopeDetails
impl Clone for EmailEnvelopeDetails
Source§fn clone(&self) -> EmailEnvelopeDetails
fn clone(&self) -> EmailEnvelopeDetails
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 EmailEnvelopeDetails
impl Debug for EmailEnvelopeDetails
Source§impl Default for EmailEnvelopeDetails
impl Default for EmailEnvelopeDetails
Source§fn default() -> EmailEnvelopeDetails
fn default() -> EmailEnvelopeDetails
Returns the “default value” for a type. Read more
impl Eq for EmailEnvelopeDetails
Source§impl Ord for EmailEnvelopeDetails
impl Ord for EmailEnvelopeDetails
Source§fn cmp(&self, other: &EmailEnvelopeDetails) -> Ordering
fn cmp(&self, other: &EmailEnvelopeDetails) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EmailEnvelopeDetails
impl PartialEq for EmailEnvelopeDetails
Source§impl PartialOrd for EmailEnvelopeDetails
impl PartialOrd for EmailEnvelopeDetails
impl StructuralPartialEq for EmailEnvelopeDetails
Auto Trait Implementations§
impl Freeze for EmailEnvelopeDetails
impl RefUnwindSafe for EmailEnvelopeDetails
impl Send for EmailEnvelopeDetails
impl Sync for EmailEnvelopeDetails
impl Unpin for EmailEnvelopeDetails
impl UnsafeUnpin for EmailEnvelopeDetails
impl UnwindSafe for EmailEnvelopeDetails
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