pub trait IntoValue {
// Required method
fn into_value(self) -> Value;
}Expand description
Trait for types that can be converted into a Value.
Required Methods§
Sourcefn into_value(self) -> Value
fn into_value(self) -> Value
Convert into a Value.