Trait cl_interpret::BuiltIn

source ·
pub trait BuiltIn: Debug + Callable {
    // Required method
    fn description(&self) -> &str;
}
Expand description

BuiltIns are Callables with bespoke definitions

Required Methods§

source

fn description(&self) -> &str

Trait Implementations§

source§

impl From<&'static dyn BuiltIn> for ConValue

source§

fn from(value: &'static dyn BuiltIn) -> Self

Converts to this type from the input type.

Implementors§