pub trait IntoFunctionDefinition {
// Required method
fn into<S: Into<String>>(self, name: S) -> FunctionDefinition;
}Expand description
A value-to-FunctionDefinition conversion that consumes the input value.
Required Methods§
Sourcefn into<S: Into<String>>(self, name: S) -> FunctionDefinition
fn into<S: Into<String>>(self, name: S) -> FunctionDefinition
Performs the conversion.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.