[][src]Struct google_drive2::AppIcons

pub struct AppIcons {
    pub category: Option<String>,
    pub icon_url: Option<String>,
    pub size: Option<i32>,
}

The various icons for the app.

This type is not used in any activity, and only used as part of another schema.

Fields

category: Option<String>

Category of the icon. Allowed values are:

  • application - icon for the application
  • document - icon for a file associated with the app
  • documentShared - icon for a shared file associated with the app
icon_url: Option<String>

URL for the icon.

size: Option<i32>

Size of the icon. Represented as the maximum of the width and height.

Trait Implementations

impl Clone for AppIcons[src]

impl Debug for AppIcons[src]

impl Default for AppIcons[src]

impl<'de> Deserialize<'de> for AppIcons[src]

impl NestedType for AppIcons[src]

impl Part for AppIcons[src]

impl Serialize for AppIcons[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any