pub struct PersonDetail {
pub email: Option<String>,
}
Fields§
§email: Option<String>
Email address of person. This is only present if an integration has user capabilities that allow access to email addresses.
Implementations§
Trait Implementations§
Source§impl Clone for PersonDetail
impl Clone for PersonDetail
Source§fn clone(&self) -> PersonDetail
fn clone(&self) -> PersonDetail
Returns a duplicate of the value. Read more
1.0.0 · 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 PersonDetail
impl Debug for PersonDetail
Source§impl Default for PersonDetail
impl Default for PersonDetail
Source§fn default() -> PersonDetail
fn default() -> PersonDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PersonDetail
impl<'de> Deserialize<'de> for PersonDetail
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
Source§impl PartialEq for PersonDetail
impl PartialEq for PersonDetail
Source§impl Serialize for PersonDetail
impl Serialize for PersonDetail
impl Eq for PersonDetail
impl StructuralPartialEq for PersonDetail
Auto Trait Implementations§
impl Freeze for PersonDetail
impl RefUnwindSafe for PersonDetail
impl Send for PersonDetail
impl Sync for PersonDetail
impl Unpin for PersonDetail
impl UnwindSafe for PersonDetail
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