pub trait AsRantFunction<Params: FromRantArgs> {
    fn as_rant_func(&'static self) -> RantFunction;
}
Expand description

Trait for converting something to a Rant function.

Required methods

Performs the conversion.

Implementors