Trait kas_theme::ThemeConfig[][src]

pub trait ThemeConfig: Clone + Debug + 'static + for<'a> Deserialize<'a> + Serialize {
    fn is_dirty(&self) -> bool;
fn apply_startup(&self);
fn raster(&self) -> &RasterConfig; }
Expand description

Requirements on theme config (with config feature)

Required methods

Has the config ever been updated?

Apply startup effects

Get raster config

Implementors