pub struct MailAccount {
pub name: String,
pub address: String,
}Fields§
§name: String§address: StringTrait Implementations§
Source§impl Clone for MailAccount
impl Clone for MailAccount
Source§fn clone(&self) -> MailAccount
fn clone(&self) -> MailAccount
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 MailAccount
impl Debug for MailAccount
Source§impl PartialEq for MailAccount
impl PartialEq for MailAccount
Source§fn eq(&self, other: &MailAccount) -> bool
fn eq(&self, other: &MailAccount) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MailAccount
impl StructuralPartialEq for MailAccount
Auto Trait Implementations§
impl Freeze for MailAccount
impl RefUnwindSafe for MailAccount
impl Send for MailAccount
impl Sync for MailAccount
impl Unpin for MailAccount
impl UnsafeUnpin for MailAccount
impl UnwindSafe for MailAccount
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