[][src]Struct google_people1::Name

pub struct Name {
    pub phonetic_middle_name: Option<String>,
    pub phonetic_given_name: Option<String>,
    pub honorific_prefix: Option<String>,
    pub display_name_last_first: Option<String>,
    pub display_name: Option<String>,
    pub middle_name: Option<String>,
    pub phonetic_honorific_prefix: Option<String>,
    pub family_name: Option<String>,
    pub metadata: Option<FieldMetadata>,
    pub phonetic_full_name: Option<String>,
    pub phonetic_family_name: Option<String>,
    pub phonetic_honorific_suffix: Option<String>,
    pub given_name: Option<String>,
    pub honorific_suffix: Option<String>,
    pub unstructured_name: Option<String>,
}

A person's name. If the name is a mononym, the family name is empty.

This type is not used in any activity, and only used as part of another schema.

Fields

phonetic_middle_name: Option<String>

The middle name(s) spelled as they sound.

phonetic_given_name: Option<String>

The given name spelled as it sounds.

honorific_prefix: Option<String>

The honorific prefixes, such as Mrs. or Dr.

display_name_last_first: Option<String>

Output only. The display name with the last name first formatted according to the locale specified by the viewer's account or the Accept-Language HTTP header.

display_name: Option<String>

Output only. The display name formatted according to the locale specified by the viewer's account or the Accept-Language HTTP header.

middle_name: Option<String>

The middle name(s).

phonetic_honorific_prefix: Option<String>

The honorific prefixes spelled as they sound.

family_name: Option<String>

The family name.

metadata: Option<FieldMetadata>

Metadata about the name.

phonetic_full_name: Option<String>

The full name spelled as it sounds.

phonetic_family_name: Option<String>

The family name spelled as it sounds.

phonetic_honorific_suffix: Option<String>

The honorific suffixes spelled as they sound.

given_name: Option<String>

The given name.

honorific_suffix: Option<String>

The honorific suffixes, such as Jr.

unstructured_name: Option<String>

The free form name value.

Trait Implementations

impl Clone for Name[src]

impl Debug for Name[src]

impl Default for Name[src]

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

impl Part for Name[src]

impl Serialize for Name[src]

Auto Trait Implementations

impl RefUnwindSafe for Name

impl Send for Name

impl Sync for Name

impl Unpin for Name

impl UnwindSafe for Name

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any