[][src]Struct creator_tools::types::Icons

pub struct Icons {
    pub bundle_icons: Option<BundleIcons>,
    pub bundle_icon_files: Option<Vec<String>>,
    pub bundle_icon_file: Option<String>,
    pub bundle_icon_name: Option<String>,
    pub prerendered_icon: Option<bool>,
}

Icons.

Fields

bundle_icons: Option<BundleIcons>

Information about all of the icons used by the app.

bundle_icon_files: Option<Vec<String>>

The names of the bundle’s icon image files.

bundle_icon_file: Option<String>

The file containing the bundle's icon.

bundle_icon_name: Option<String>

The name of the asset that represents the app icon.

prerendered_icon: Option<bool>

A Boolean value indicating whether the app’s icon already contains a shine effect.

Trait Implementations

impl Clone for Icons[src]

impl Debug for Icons[src]

impl Default for Icons[src]

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

impl PartialEq<Icons> for Icons[src]

impl Serialize for Icons[src]

impl StructuralPartialEq for Icons[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.