pub trait EvalScopeImpl {
    // Provided methods
    fn about(&self) -> (String, String) { ... }
    fn list_funcs(&self) -> &[ScopeFunc<&Self>] { ... }
    fn list_eval(&self) -> &[ScopeEval<&Self>] { ... }
}

Provided Methods§

source

fn about(&self) -> (String, String)

source

fn list_funcs(&self) -> &[ScopeFunc<&Self>]

source

fn list_eval(&self) -> &[ScopeEval<&Self>]

Implementors§