pub struct DriveInfoList {
pub next_page_token: Option<String>,
pub kind: Option<String>,
pub drives: Option<Vec<DriveInfo>>,
}Expand description
A list of shared drives.
Fields§
§next_page_token: Option<String>The page token for the next page of shared drives.
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#driveList.
drives: Option<Vec<DriveInfo>>The list of shared drives.
If next_page_token is populated,
then this list may be incomplete and an additional page of results
should be fetched.
Implementations§
Source§impl DriveInfoList
impl DriveInfoList
Trait Implementations§
Source§impl Clone for DriveInfoList
impl Clone for DriveInfoList
Source§fn clone(&self) -> DriveInfoList
fn clone(&self) -> DriveInfoList
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 DriveInfoList
impl Debug for DriveInfoList
Source§impl Default for DriveInfoList
impl Default for DriveInfoList
Source§fn default() -> DriveInfoList
fn default() -> DriveInfoList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DriveInfoList
impl<'de> Deserialize<'de> for DriveInfoList
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 DriveInfoList
impl Display for DriveInfoList
Auto Trait Implementations§
impl Freeze for DriveInfoList
impl RefUnwindSafe for DriveInfoList
impl Send for DriveInfoList
impl Sync for DriveInfoList
impl Unpin for DriveInfoList
impl UnwindSafe for DriveInfoList
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