pub struct RevisionList {
pub next_page_token: Option<String>,
pub kind: Option<String>,
pub revisions: Option<Vec<Revision>>,
}Expand description
A list of revisions to a file.
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#revisionList.
revisions: Option<Vec<Revision>>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§
Source§impl RevisionList
impl RevisionList
Trait Implementations§
Source§impl Clone for RevisionList
impl Clone for RevisionList
Source§fn clone(&self) -> RevisionList
fn clone(&self) -> RevisionList
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RevisionList
impl Debug for RevisionList
Source§impl Default for RevisionList
impl Default for RevisionList
Source§fn default() -> RevisionList
fn default() -> RevisionList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RevisionList
impl<'de> Deserialize<'de> for RevisionList
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
Source§impl Display for RevisionList
impl Display for RevisionList
Source§impl PartialEq for RevisionList
impl PartialEq for RevisionList
Source§impl Serialize for RevisionList
impl Serialize for RevisionList
impl Eq for RevisionList
impl StructuralPartialEq for RevisionList
Auto Trait Implementations§
impl Freeze for RevisionList
impl RefUnwindSafe for RevisionList
impl Send for RevisionList
impl Sync for RevisionList
impl Unpin for RevisionList
impl UnwindSafe for RevisionList
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.