[][src]Struct linicon::IconPath

pub struct IconPath {
    pub path: PathBuf,
    pub theme: String,
    pub icon_type: IconType,
    pub min_size: u16,
    pub max_size: u16,
    pub scale: u16,
}

A path to an icon and meta data about that icon

Fields

path: PathBuf

The path to the icon

theme: String

The name of the theme to icon is from

icon_type: IconType

The type of icon i.e. the file type

min_size: u16

The minimum size of the icon

max_size: u16

The maximum size of the icon

scale: u16

The scale the icon is used for

Trait Implementations

impl Debug for IconPath[src]

impl Eq for IconPath[src]

impl PartialEq<IconPath> for IconPath[src]

impl StructuralEq for IconPath[src]

impl StructuralPartialEq for IconPath[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> From<T> for T[src]

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,