pub trait IntoValue<T> {
// Required method
fn into_value(self) -> Value<T>;
}
Expand description
A type that can be converted into a Value
.
Required Methods§
sourcefn into_value(self) -> Value<T>
fn into_value(self) -> Value<T>
Returns this type as a Value
.