pub trait IntoValue {
// Required method
fn into_value(self) -> Result<Value>;
}Required Methods§
fn into_value(self) -> Result<Value>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".