pub struct Identity {
pub name: Option<String>,
pub email: Option<String>,
pub reverse_name: bool,
pub reverse_realname: Option<bool>,
}Fields§
§name: Option<String>§email: Option<String>§reverse_name: boolmutt’s reverse_name: a reply’s From becomes whichever of your addresses the original was sent to.
reverse_realname: Option<bool>mutt’s $reverse_realname: the display name comes over with the address reverse_name found. True unless set otherwise, as in mutt; false keeps the configured name and takes the address alone.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Identity
impl<'de> Deserialize<'de> for Identity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Identity
impl RefUnwindSafe for Identity
impl Send for Identity
impl Sync for Identity
impl Unpin for Identity
impl UnsafeUnpin for Identity
impl UnwindSafe for Identity
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