pub trait Deserialize {
    fn deserialize(val: &Intermediate) -> Result<Self, Error>
    where
        Self: Sized
; }
Expand description

Deserialize trait.

The trait can be implemented by objects the can deserialized from the intermediate representation.

Required methods

Deserialize an object instance.

Implementations on Foreign Types

Implementors