pub trait NativeMeth: for<'v> Fn(&mut Evaluator<'v, '_>, Value<'v>, &Arguments<'v, '_>) -> Result<Value<'v>> + Send + Sync + 'static { }
Expand description

Native method implementation.

This trait is implemented by generated code and rarely needed to be implemented manually.

Implementors