Struct google_plus1::api::ActivityFeed
source · [−]pub struct ActivityFeed {
pub etag: Option<String>,
pub id: Option<String>,
pub items: Option<Vec<Activity>>,
pub kind: Option<String>,
pub next_link: Option<String>,
pub next_page_token: Option<String>,
pub self_link: Option<String>,
pub title: Option<String>,
pub updated: Option<String>,
}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 activities (response)
- search activities (response)
Fields
etag: Option<String>ETag of this response for caching purposes.
id: Option<String>The ID of this collection of activities. Deprecated.
items: Option<Vec<Activity>>The activities in this page of results.
kind: Option<String>Identifies this resource as a collection of activities. Value: “plus#activityFeed”.
next_link: Option<String>Link to the next page of activities.
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 activity resource.
title: Option<String>The title of this collection of activities, which is a truncated portion of the content.
updated: Option<String>The time at which this collection of activities was last updated. Formatted as an RFC 3339 timestamp.
Trait Implementations
sourceimpl Clone for ActivityFeed
impl Clone for ActivityFeed
sourcefn clone(&self) -> ActivityFeed
fn clone(&self) -> ActivityFeed
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ActivityFeed
impl Debug for ActivityFeed
sourceimpl Default for ActivityFeed
impl Default for ActivityFeed
sourcefn default() -> ActivityFeed
fn default() -> ActivityFeed
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ActivityFeed
impl<'de> Deserialize<'de> for ActivityFeed
sourcefn 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>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for ActivityFeed
impl Serialize for ActivityFeed
impl ResponseResult for ActivityFeed
Auto Trait Implementations
impl RefUnwindSafe for ActivityFeed
impl Send for ActivityFeed
impl Sync for ActivityFeed
impl Unpin for ActivityFeed
impl UnwindSafe for ActivityFeed
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more