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