Trait Config

Source
pub trait Config<T> {
    // Required methods
    fn expression_function(&self) -> Box<dyn Fn(T) -> ExpResult + 'static>;
    fn name(&self) -> String;
}

Required Methods§

Source

fn expression_function(&self) -> Box<dyn Fn(T) -> ExpResult + 'static>

Source

fn name(&self) -> String

Trait Implementations§

Source§

impl<T> Debug for dyn Config<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementors§