[][src]Struct graph_rs_types::entitytypes::Person

pub struct Person {
    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: Stringgiven_name: Stringsurname: Stringbirthday: Stringperson_notes: Stringis_favorite: boolscored_email_addresses: Vec<ScoredEmailAddress>phones: Vec<Phone>postal_addresses: Vec<Location>websites: Vec<Website>job_title: Stringcompany_name: Stringyomi_company: Stringdepartment: Stringoffice_location: Stringprofession: Stringperson_type: PersonTypeuser_principal_name: Stringim_address: String

Trait Implementations

impl Eq for Person[src]

impl Clone for Person[src]

impl PartialEq<Person> for Person[src]

impl Debug for Person[src]

impl Serialize for Person[src]

impl<'de> Deserialize<'de> for Person[src]

Auto Trait Implementations

impl Send for Person

impl Unpin for Person

impl Sync for Person

impl RefUnwindSafe for Person

impl UnwindSafe for Person

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]