Struct google_plus1::PersonEmails[][src]

pub struct PersonEmails {
    pub type_: Option<String>,
    pub value: Option<String>,
}

A list of email addresses that this person has, including their Google account email address, and the public verified email addresses on their Google+ profile. The plus.profile.emails.read scope is needed to retrieve these email addresses, or the email scope can be used to retrieve just the Google account email address.

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

Fields

The type of address. Possible values include, but are not limited to, the following values:

  • "account" - Google account email address.
  • "home" - Home email address.
  • "work" - Work email address.
  • "other" - Other.

The email address.

Trait Implementations

impl Default for PersonEmails
[src]

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

impl Clone for PersonEmails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PersonEmails
[src]

Formats the value using the given formatter. Read more

impl NestedType for PersonEmails
[src]

impl Part for PersonEmails
[src]

Auto Trait Implementations