pub struct Person {Show 19 fields
pub display_name: String,
pub given_name: String,
pub surname: String,
pub birthday: String,
pub person_notes: String,
pub is_favorite: bool,
pub scored_email_addresses: Vec<ScoredEmailAddress>,
pub phones: Vec<Phone>,
pub postal_addresses: Vec<Location>,
pub websites: Vec<Website>,
pub job_title: String,
pub company_name: String,
pub yomi_company: String,
pub department: String,
pub office_location: String,
pub profession: String,
pub person_type: PersonType,
pub user_principal_name: String,
pub im_address: String,
}
Fields§
§display_name: String
§given_name: String
§surname: String
§birthday: String
§person_notes: String
§is_favorite: bool
§scored_email_addresses: Vec<ScoredEmailAddress>
§phones: Vec<Phone>
§postal_addresses: Vec<Location>
§websites: Vec<Website>
§job_title: String
§company_name: String
§yomi_company: String
§department: String
§office_location: String
§profession: String
§person_type: PersonType
§user_principal_name: String
§im_address: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Person
impl<'de> Deserialize<'de> for Person
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
impl Eq for Person
impl StructuralPartialEq for Person
Auto Trait Implementations§
impl Freeze for Person
impl RefUnwindSafe for Person
impl Send for Person
impl Sync for Person
impl Unpin for Person
impl UnwindSafe for Person
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