pub trait ToValue {
// Required method
fn to_value(&self) -> Value<'_>;
}Expand description
Convert a reference to a Value.
This trait is the basis for the Value::from_any method.
pub trait ToValue {
// Required method
fn to_value(&self) -> Value<'_>;
}Convert a reference to a Value.
This trait is the basis for the Value::from_any method.