pub struct HistoricalEmail {
pub resource_uri: HistoricalEmailUri,
pub address: String,
pub person: PersonUri,
pub time: DateTime<Utc>,
pub origin: String,
pub primary: bool,
pub active: bool,
pub history_change_reason: Option<String>,
pub history_user: Option<String>,
pub history_id: u64,
pub history_type: String,
pub history_date: DateTime<Utc>,
}
Fields§
§resource_uri: HistoricalEmailUri
§address: String
§person: PersonUri
§time: DateTime<Utc>
§origin: String
§primary: bool
§active: bool
§history_change_reason: Option<String>
§history_user: Option<String>
§history_id: u64
§history_type: String
§history_date: DateTime<Utc>
Trait Implementations§
Source§impl Debug for HistoricalEmail
impl Debug for HistoricalEmail
Source§impl<'de> Deserialize<'de> for HistoricalEmail
impl<'de> Deserialize<'de> for HistoricalEmail
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 HistoricalEmail
impl RefUnwindSafe for HistoricalEmail
impl Send for HistoricalEmail
impl Sync for HistoricalEmail
impl Unpin for HistoricalEmail
impl UnwindSafe for HistoricalEmail
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more