Skip to main content

IntoValue

Trait IntoValue 

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

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

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>>,