IntoValue

Trait IntoValue 

Source
pub trait IntoValue {
    // Required method
    fn into_value(self) -> Value;
}
Expand description

Trait for types that can be converted into a Value.

Required Methods§

Source

fn into_value(self) -> Value

Convert into a Value.

Implementors§

Source§

impl<T: Into<Value>> IntoValue for T