pub trait FromDynamic {
    fn from_dynamic(
        value: &Value,
        options: FromDynamicOptions
    ) -> Result<Self, Error>
    where
        Self: Sized
; }
Expand description

The FromDynamic trait allows a type to construct itself from a Value. This trait can be derived.

Required Methods

Implementations on Foreign Types

Implementors