pub struct EmailRecipient {
pub email: String,
pub name: Option<String>,
}Expand description
One recipient in to / cc / bcc.
Fields§
§email: StringEmail address.
name: Option<String>Display name.
Trait Implementations§
Source§impl Clone for EmailRecipient
impl Clone for EmailRecipient
Source§fn clone(&self) -> EmailRecipient
fn clone(&self) -> EmailRecipient
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 EmailRecipient
impl Debug for EmailRecipient
Auto Trait Implementations§
impl Freeze for EmailRecipient
impl RefUnwindSafe for EmailRecipient
impl Send for EmailRecipient
impl Sync for EmailRecipient
impl Unpin for EmailRecipient
impl UnsafeUnpin for EmailRecipient
impl UnwindSafe for EmailRecipient
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