pub trait CachedCurEval {
    // Required methods
    fn eval(from: &CachedVals) -> Option<Value>;
    fn name() -> &'static str;
}

Required Methods§

source

fn eval(from: &CachedVals) -> Option<Value>

source

fn name() -> &'static str

Object Safety§

This trait is not object safe.

Implementors§