Struct google_people1::Person [] [src]

pub struct Person {
    pub interests: Option<Vec<Interest>>,
    pub bragging_rights: Option<Vec<BraggingRights>>,
    pub addresses: Option<Vec<Address>>,
    pub nicknames: Option<Vec<Nickname>>,
    pub occupations: Option<Vec<Occupation>>,
    pub phone_numbers: Option<Vec<PhoneNumber>>,
    pub photos: Option<Vec<Photo>>,
    pub names: Option<Vec<Name>>,
    pub age_range: Option<String>,
    pub residences: Option<Vec<Residence>>,
    pub resource_name: Option<String>,
    pub relationship_interests: Option<Vec<RelationshipInterest>>,
    pub cover_photos: Option<Vec<CoverPhoto>>,
    pub locales: Option<Vec<Locale>>,
    pub organizations: Option<Vec<Organization>>,
    pub taglines: Option<Vec<Tagline>>,
    pub skills: Option<Vec<Skill>>,
    pub age_ranges: Option<Vec<AgeRangeType>>,
    pub birthdays: Option<Vec<Birthday>>,
    pub relations: Option<Vec<Relation>>,
    pub memberships: Option<Vec<Membership>>,
    pub biographies: Option<Vec<Biography>>,
    pub etag: Option<String>,
    pub urls: Option<Vec<Url>>,
    pub relationship_statuses: Option<Vec<RelationshipStatus>>,
    pub genders: Option<Vec<Gender>>,
    pub email_addresses: Option<Vec<EmailAddress>>,
    pub im_clients: Option<Vec<ImClient>>,
    pub events: Option<Vec<Event>>,
    pub metadata: Option<PersonMetadata>,
}

Information about a person merged from various data sources such as the authenticated user's contacts and profile data.

Most fields can have multiple items. The items in a field have no guaranteed order, but each non-empty field is guaranteed to have exactly one field with metadata.primary set to true.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The person's interests.

The person's bragging rights.

The person's street addresses.

The person's nicknames.

The person's occupations.

The person's phone numbers.

The person's photos.

The person's names.

DEPRECATED(Please read person.age_ranges instead). The person's age range.

The person's residences.

The resource name for the person, assigned by the server. An ASCII string with a max length of 27 characters, in the form of people/<person_id>.

The kind of relationship the person is looking for.

The person's cover photos.

The person's locale preferences.

The person's past or current organizations.

The person's taglines.

The person's skills.

The person's age ranges.

The person's birthdays.

The person's relations.

The person's group memberships.

The person's biographies.

The HTTP entity tag of the resource. Used for web cache validation.

The person's associated URLs.

The person's relationship statuses.

The person's genders.

The person's email addresses.

The person's instant messaging clients.

The person's events.

Metadata about the person.

Trait Implementations

impl Default for Person
[src]

[src]

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

impl Clone for Person
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Person
[src]

[src]

Formats the value using the given formatter.

impl ResponseResult for Person
[src]