pub struct LabelList {
pub next_page_token: Option<String>,
pub kind: Option<String>,
pub labels: Option<Vec<Label>>,
}Expand description
Fields§
§next_page_token: Option<String>The page token for the next page of files.
This will be absent if the end of the files 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. Value: the fixed string “drive#labelList”.
labels: Option<Vec<Label>>The list of labels.
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 LabelList
impl<'de> Deserialize<'de> for LabelList
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
Auto Trait Implementations§
impl Freeze for LabelList
impl RefUnwindSafe for LabelList
impl Send for LabelList
impl Sync for LabelList
impl Unpin for LabelList
impl UnwindSafe for LabelList
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