logo
pub trait ToValue {
    fn to_value(&self) -> Value<'_>;
}
Expand description

A type that can be converted into a Value.

Required methods

Perform the conversion.

Implementations on Foreign Types

Implementors