Trait geng_ui::Configurable

source ·
pub trait Configurable: Sized {
    type Config: Config<Self>;

    // Required method
    fn config(theme: &Rc<Theme>, value: Self) -> Self::Config;
}

Required Associated Types§

source

type Config: Config<Self>

Required Methods§

source

fn config(theme: &Rc<Theme>, value: Self) -> Self::Config

Object Safety§

This trait is not object safe.

Implementors§