pub struct PeopleFeed {
pub etag: Option<String>,
pub items: Option<Vec<Person>>,
pub kind: Option<String>,
pub next_page_token: Option<String>,
pub self_link: Option<String>,
pub title: Option<String>,
pub total_items: Option<i32>,
}
Expand description
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).
- list people (response)
- list by activity people (response)
- search people (response)
Fields§
§etag: Option<String>
ETag of this response for caching purposes.
items: Option<Vec<Person>>
The people in this page of results. Each item includes the id, displayName, image, and url for the person. To retrieve additional profile data, see the people.get method.
kind: Option<String>
Identifies this resource as a collection of people. Value: “plus#peopleFeed”.
next_page_token: Option<String>
The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results.
self_link: Option<String>
Link to this resource.
title: Option<String>
The title of this collection of people.
total_items: Option<i32>
The total number of people available in this list. The number of people in a response might be smaller due to paging. This might not be set for all collections.
Trait Implementations§
Source§impl Clone for PeopleFeed
impl Clone for PeopleFeed
Source§fn clone(&self) -> PeopleFeed
fn clone(&self) -> PeopleFeed
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for PeopleFeed
impl Debug for PeopleFeed
Source§impl Default for PeopleFeed
impl Default for PeopleFeed
Source§fn default() -> PeopleFeed
fn default() -> PeopleFeed
Source§impl<'de> Deserialize<'de> for PeopleFeed
impl<'de> Deserialize<'de> for PeopleFeed
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for PeopleFeed
impl Serialize for PeopleFeed
impl ResponseResult for PeopleFeed
Auto Trait Implementations§
impl Freeze for PeopleFeed
impl RefUnwindSafe for PeopleFeed
impl Send for PeopleFeed
impl Sync for PeopleFeed
impl Unpin for PeopleFeed
impl UnwindSafe for PeopleFeed
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more