[][src]Struct google_people1::FieldMetadata

pub struct FieldMetadata {
    pub source: Option<Source>,
    pub verified: Option<bool>,
    pub primary: Option<bool>,
}

Metadata about a field.

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

Fields

source: Option<Source>

The source of the field.

verified: Option<bool>

Output only. True if the field is verified; false if the field is unverified. A verified field is typically a name, email address, phone number, or website that has been confirmed to be owned by the person.

primary: Option<bool>

True if the field is the primary field; false if the field is a secondary field.

Trait Implementations

impl Clone for FieldMetadata[src]

impl Debug for FieldMetadata[src]

impl Default for FieldMetadata[src]

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

impl Part for FieldMetadata[src]

impl Serialize for FieldMetadata[src]

Auto Trait Implementations

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