pub trait IntoFunctionDefinition {
    fn into<S: Into<String>>(self, name: S) -> FunctionDefinition;
}
Expand description

A value-to-FunctionDefinition conversion that consumes the input value.

Required Methods§

Performs the conversion.

Implementations on Foreign Types§

Implementors§