[][src]Enum linicon_theme::Check

pub enum Check {
    KDEGlobals,
    GSettings,
    GTK3,
    GTK2,
    ThemeConf,
}

Select which theme store locations to check

Variants

KDEGlobals

$XDG_CONFIG_HOME/kdeglobals -> Icons -> Theme

GSettings

Output of gsettings get org.gnome.desktop.interface icon-theme

GTK3

$XDG_CONFIG_HOME/gtk-3.0/settings.ini -> Settings -> gtk-icon-theme-name

GTK2

$HOME/.gtkrc-2.0 -> gtk-icon-theme-name

ThemeConf

$XDG_CONFIG_HOME/theme.conf -> Settings -> icon-theme-name

Auto Trait Implementations

impl RefUnwindSafe for Check

impl Send for Check

impl Sync for Check

impl Unpin for Check

impl UnwindSafe for Check

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>,