Struct google_people1::PersonResponse[][src]

pub struct PersonResponse {
    pub status: Option<Status>,
    pub person: Option<Person>,
    pub http_status_code: Option<i32>,
    pub requested_resource_name: Option<String>,
}

The response for a single person

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

Fields

The status of the response.

The person.

DEPRECATED (Please use status instead)

[HTTP 1.1 status code] (http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html).

The original requested resource name. May be different than the resource name on the returned person.

The resource name can change when adding or removing fields that link a contact and profile such as a verified email, verified phone number, or a profile URL.

Trait Implementations

impl Default for PersonResponse
[src]

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

impl Clone for PersonResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PersonResponse
[src]

Formats the value using the given formatter. Read more

impl Part for PersonResponse
[src]

Auto Trait Implementations