[][src]Struct google_people1::PersonResponse

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

The response for a single person

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

Fields

requested_resource_name: Option<String>

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.

person: Option<Person>

The person.

http_status_code: Option<i32>

DEPRECATED (Please use status instead)

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

status: Option<Status>

The status of the response.

Trait Implementations

impl Part for PersonResponse[src]

impl Default for PersonResponse[src]

impl Clone for PersonResponse[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for PersonResponse[src]

impl Serialize for PersonResponse[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]