Struct google_people1::ListConnectionsResponse [] [src]

pub struct ListConnectionsResponse {
    pub next_page_token: Option<String>,
    pub connections: Option<Vec<Person>>,
    pub next_sync_token: Option<String>,
    pub total_items: Option<i32>,
    pub total_people: Option<i32>,
}

There is no detailed description.

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 token that can be used to retrieve the next page of results.

The list of people that the requestor is connected to.

The token that can be used to retrieve changes since the last request.

The total number of items in the list without pagination.

DEPRECATED(Please use total_items). The total number of people in the list without pagination.

Trait Implementations

impl Default for ListConnectionsResponse
[src]

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

impl Clone for ListConnectionsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListConnectionsResponse
[src]

Formats the value using the given formatter.

impl ResponseResult for ListConnectionsResponse
[src]