Trait IntoValue

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

Required Methods§

Implementors§

Source§

impl IntoValue for Result<Value>

Source§

impl<T> IntoValue for T
where T: TryInto<Value>, T::Error: Into<Box<dyn Error + Send + Sync>>,