Trait IntoDynamic

Source
pub trait IntoDynamic {
    // Required method
    fn into_dynamic(self) -> Result<Dynamic, Box<EvalAltResult>>;
}
Expand description

A trait for converting types into a Dynamic value

Required Methods§

Source

fn into_dynamic(self) -> Result<Dynamic, Box<EvalAltResult>>

Convert the type into a Dynamic value

Implementors§