[][src]Struct graph_rs_types::entitytypes::Contact

pub struct Contact {
    pub parent_folder_id: String,
    pub birthday: String,
    pub file_as: String,
    pub display_name: String,
    pub given_name: String,
    pub initials: String,
    pub middle_name: String,
    pub nick_name: String,
    pub surname: String,
    pub title: String,
    pub yomi_given_name: String,
    pub yomi_surname: String,
    pub yomi_company_name: String,
    pub generation: String,
    pub email_addresses: Vec<EmailAddress>,
    pub im_addresses: Vec<String>,
    pub job_title: String,
    pub company_name: String,
    pub department: String,
    pub office_location: String,
    pub profession: String,
    pub business_home_page: String,
    pub assistant_name: String,
    pub manager: String,
    pub home_phones: Vec<String>,
    pub mobile_phone: String,
    pub business_phones: Vec<String>,
    pub home_address: PhysicalAddress,
    pub business_address: PhysicalAddress,
    pub other_address: PhysicalAddress,
    pub spouse_name: String,
    pub personal_notes: String,
    pub children: Vec<String>,
    pub extensions: Vec<Extension>,
    pub single_value_extended_properties: Vec<SingleValueLegacyExtendedProperty>,
    pub multi_value_extended_properties: Vec<MultiValueLegacyExtendedProperty>,
    pub photo: ProfilePhoto,
}

Fields

parent_folder_id: Stringbirthday: Stringfile_as: Stringdisplay_name: Stringgiven_name: Stringinitials: Stringmiddle_name: Stringnick_name: Stringsurname: Stringtitle: Stringyomi_given_name: Stringyomi_surname: Stringyomi_company_name: Stringgeneration: Stringemail_addresses: Vec<EmailAddress>im_addresses: Vec<String>job_title: Stringcompany_name: Stringdepartment: Stringoffice_location: Stringprofession: Stringbusiness_home_page: Stringassistant_name: Stringmanager: Stringhome_phones: Vec<String>mobile_phone: Stringbusiness_phones: Vec<String>home_address: PhysicalAddressbusiness_address: PhysicalAddressother_address: PhysicalAddressspouse_name: Stringpersonal_notes: Stringchildren: Vec<String>extensions: Vec<Extension>single_value_extended_properties: Vec<SingleValueLegacyExtendedProperty>multi_value_extended_properties: Vec<MultiValueLegacyExtendedProperty>photo: ProfilePhoto

Trait Implementations

impl Eq for Contact[src]

impl Clone for Contact[src]

impl PartialEq<Contact> for Contact[src]

impl Debug for Contact[src]

impl Serialize for Contact[src]

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

Auto Trait Implementations

impl Send for Contact

impl Unpin for Contact

impl Sync for Contact

impl RefUnwindSafe for Contact

impl UnwindSafe for Contact

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]