Trait rustdb::run::CExp[][src]

pub trait CExp<T> {
    fn eval(&self, ee: &mut EvalEnv<'_>, data: &[u8]) -> T;
}
Expand description

Compiled expression which yields type T when evaluated.

Required methods

Evaluate the compiled expression.

Implementors