Struct gapi_grpc::google::cloud::talent::v4beta1::person_name::PersonStructuredName[][src]

pub struct PersonStructuredName {
    pub given_name: String,
    pub preferred_name: String,
    pub middle_initial: String,
    pub family_name: String,
    pub suffixes: Vec<String>,
    pub prefixes: Vec<String>,
}

Resource that represents a person’s structured name.

Fields

given_name: String

Given/first name.

It’s derived from [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name] if not provided.

Number of characters allowed is 100.

preferred_name: String

Preferred given/first name or nickname.

Number of characters allowed is 100.

middle_initial: String

Middle initial.

It’s derived from [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name] if not provided.

Number of characters allowed is 20.

family_name: String

Family/last name.

It’s derived from [formatted_name][google.cloud.talent.v4beta1.PersonName.formatted_name] if not provided.

Number of characters allowed is 100.

suffixes: Vec<String>

Suffixes.

Number of characters allowed is 20.

prefixes: Vec<String>

Prefixes.

Number of characters allowed is 20.

Trait Implementations

impl Clone for PersonStructuredName[src]

impl Debug for PersonStructuredName[src]

impl Default for PersonStructuredName[src]

impl Message for PersonStructuredName[src]

impl PartialEq<PersonStructuredName> for PersonStructuredName[src]

impl StructuralPartialEq for PersonStructuredName[src]

Auto Trait Implementations

impl RefUnwindSafe for PersonStructuredName

impl Send for PersonStructuredName

impl Sync for PersonStructuredName

impl Unpin for PersonStructuredName

impl UnwindSafe for PersonStructuredName

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]