pub struct ReplyList {
pub next_page_token: Option<String>,
pub kind: Option<String>,
pub replies: Option<Vec<Reply>>,
}Expand description
A list of replies to a comment.
Fields§
§next_page_token: Option<String>The page token for the next page of replies.
This will be absent if the end of the list has been reached. If the token is rejected for any reason, it should be discarded, and pagination should be restarted from the first page of results. The page token is typically valid for several hours. However, if new items are added or removed, your expected results might differ.
kind: Option<String>Identifies what kind of resource this is.
This is always drive#replyList.
replies: Option<Vec<Reply>>The list of replies.
If next_page_token is populated,
then this list may be incomplete and an additional page of results
should be fetched.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ReplyList
impl<'de> Deserialize<'de> for ReplyList
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ReplyList
impl StructuralPartialEq for ReplyList
Auto Trait Implementations§
impl Freeze for ReplyList
impl RefUnwindSafe for ReplyList
impl Send for ReplyList
impl Sync for ReplyList
impl Unpin for ReplyList
impl UnwindSafe for ReplyList
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.