pub trait TryConvert: Sized {
    fn try_convert(val: &Value) -> Result<Self, Error>;
}
Expand description

Conversions from Value to Rust types.

Required Methods

Convert val into Self.

Implementations on Foreign Types

Implementors