pub struct ChangeList {
pub kind: Option<String>,
pub next_page_token: Option<String>,
pub new_start_page_token: Option<String>,
pub changes: Option<Vec<Change>>,
}Expand description
A list of changes for a user.
Fields§
§kind: Option<String>Identifies what kind of resource this is.
This is always drive#changeList.
next_page_token: Option<String>The page token for the next page of changes.
This will be absent if the end of the changes list has been reached. The page token doesn’t expire.
new_start_page_token: Option<String>The starting page token for future changes.
This will be present only if the end of the current changes list has been reached. The page token doesn’t expire.
changes: Option<Vec<Change>>The list of changes.
If next_page_token is populated, then
this list may be incomplete and an additional page of results should be
fetched.
Implementations§
Source§impl ChangeList
impl ChangeList
Trait Implementations§
Source§impl Clone for ChangeList
impl Clone for ChangeList
Source§fn clone(&self) -> ChangeList
fn clone(&self) -> ChangeList
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 ChangeList
impl Debug for ChangeList
Source§impl Default for ChangeList
impl Default for ChangeList
Source§fn default() -> ChangeList
fn default() -> ChangeList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChangeList
impl<'de> Deserialize<'de> for ChangeList
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 ChangeList
impl Display for ChangeList
Auto Trait Implementations§
impl Freeze for ChangeList
impl RefUnwindSafe for ChangeList
impl Send for ChangeList
impl Sync for ChangeList
impl Unpin for ChangeList
impl UnwindSafe for ChangeList
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