pub struct AppList {
pub default_app_ids: Option<Vec<String>>,
pub kind: Option<String>,
pub self_link: Option<String>,
pub items: Option<Vec<App>>,
}Expand description
A list of apps which the user has installed.
Fields§
§default_app_ids: Option<Vec<String>>The list of app IDs that the user has specified to use by default.
The list is in reverse-priority order (lowest to highest).
kind: Option<String>Identifies what kind of resource this is.
This always is drive#appList.
self_link: Option<String>A link back to this list.
items: Option<Vec<App>>The list of apps.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AppList
impl<'de> Deserialize<'de> for AppList
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 AppList
impl RefUnwindSafe for AppList
impl Send for AppList
impl Sync for AppList
impl Unpin for AppList
impl UnwindSafe for AppList
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