Trait kas_core::theme::ThemeConfig
source · pub trait ThemeConfig: Clone + Debug + 'static + for<'a> Deserialize<'a> + Serialize {
// Required methods
fn is_dirty(&self) -> bool;
fn apply_startup(&self);
fn raster(&self) -> &RasterConfig;
}Expand description
Requirements on theme config (with config feature)
Required Methods§
sourcefn apply_startup(&self)
fn apply_startup(&self)
Apply startup effects
sourcefn raster(&self) -> &RasterConfig
fn raster(&self) -> &RasterConfig
Get raster config
Object Safety§
This trait is not object safe.