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<DateTime<Utc>>,
}
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<DateTime<Utc>>
The time at which this collection of activities was last updated. Formatted as an RFC 3339 timestamp.
Trait Implementations§
Source§impl Clone for ActivityFeed
impl Clone for ActivityFeed
Source§fn clone(&self) -> ActivityFeed
fn clone(&self) -> ActivityFeed
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ActivityFeed
impl Debug for ActivityFeed
Source§impl Default for ActivityFeed
impl Default for ActivityFeed
Source§fn default() -> ActivityFeed
fn default() -> ActivityFeed
Source§impl<'de> Deserialize<'de> for ActivityFeed
impl<'de> Deserialize<'de> for ActivityFeed
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 ActivityFeed
impl Serialize for ActivityFeed
impl ResponseResult for ActivityFeed
Auto Trait Implementations§
impl Freeze for ActivityFeed
impl RefUnwindSafe for ActivityFeed
impl Send for ActivityFeed
impl Sync for ActivityFeed
impl Unpin for ActivityFeed
impl UnwindSafe for ActivityFeed
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