pub trait FunctionResult {
// Required method
fn into_result(self) -> TeraResult<Value>;
}Expand description
The trait that automatically converts a value into a TeraResult<Value>
Required Methods§
fn into_result(self) -> TeraResult<Value>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".