pub struct CommentFeed {
pub etag: Option<String>,
pub id: Option<String>,
pub items: Option<Vec<Comment>>,
pub kind: Option<String>,
pub next_link: Option<String>,
pub next_page_token: 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 comments (response)
Fields§
§etag: Option<String>
ETag of this response for caching purposes.
id: Option<String>
The ID of this collection of comments.
items: Option<Vec<Comment>>
The comments in this page of results.
kind: Option<String>
Identifies this resource as a collection of comments. Value: “plus#commentFeed”.
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.
title: Option<String>
The title of this collection of comments.
updated: Option<DateTime<Utc>>
The time at which this collection of comments was last updated. Formatted as an RFC 3339 timestamp.
Trait Implementations§
Source§impl Clone for CommentFeed
impl Clone for CommentFeed
Source§fn clone(&self) -> CommentFeed
fn clone(&self) -> CommentFeed
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for CommentFeed
impl Debug for CommentFeed
Source§impl Default for CommentFeed
impl Default for CommentFeed
Source§fn default() -> CommentFeed
fn default() -> CommentFeed
Source§impl<'de> Deserialize<'de> for CommentFeed
impl<'de> Deserialize<'de> for CommentFeed
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 CommentFeed
impl Serialize for CommentFeed
impl ResponseResult for CommentFeed
Auto Trait Implementations§
impl Freeze for CommentFeed
impl RefUnwindSafe for CommentFeed
impl Send for CommentFeed
impl Sync for CommentFeed
impl Unpin for CommentFeed
impl UnwindSafe for CommentFeed
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