pub trait IntoRantFunction<Params: FromRantArgs> {
    fn into_rant_func(self) -> RantFunction;
}
Expand description

Trait for converting something to a Rant function.

Required Methods

Performs the conversion.

Implementors