pub struct ChangeList {
pub etag: Option<String>,
pub items: Option<Vec<Change>>,
pub kind: Option<String>,
pub largest_change_id: Option<i64>,
pub new_start_page_token: Option<String>,
pub next_link: Option<String>,
pub next_page_token: Option<String>,
pub self_link: Option<String>,
}Expand description
A list of changes for a user.
§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 changes (response)
Fields§
§etag: Option<String>The ETag of the list.
items: Option<Vec<Change>>The list of changes. If nextPageToken is populated, then this list may be incomplete and an additional page of results should be fetched.
kind: Option<String>This is always drive#changeList.
largest_change_id: Option<i64>The current largest change ID.
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.
next_link: Option<String>A link to the next page of changes.
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. If the token is rejected for any reason, it should be discarded, and pagination should be restarted from the first page of results.
self_link: Option<String>A link back to this list.
Trait Implementations§
Source§impl Clone for ChangeList
impl Clone for ChangeList
Source§fn clone(&self) -> ChangeList
fn clone(&self) -> ChangeList
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more