Struct google_people1::EmailAddress[][src]

pub struct EmailAddress {
    pub formatted_type: Option<String>,
    pub type_: Option<String>,
    pub display_name: Option<String>,
    pub value: Option<String>,
    pub metadata: Option<FieldMetadata>,
}

A person's email address.

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

Fields

The read-only type of the email address translated and formatted in the viewer's account locale or the Accept-Language HTTP header locale.

The type of the email address. The type can be custom or one of these predefined values:

  • home
  • work
  • other

The display name of the email.

The email address.

Metadata about the email address.

Trait Implementations

impl Default for EmailAddress
[src]

Returns the "default value" for a type. Read more

impl Clone for EmailAddress
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EmailAddress
[src]

Formats the value using the given formatter. Read more

impl Part for EmailAddress
[src]

Auto Trait Implementations