pub trait TryFromValuewhere
    Self: Sized,
{ fn try_from_value(value: &Value) -> Result<Self, Error>; }
Expand description

Implemented by types that can be constructed from Values.

Required Methods

Implementations on Foreign Types

Implementors