pub trait FromJSON: Sized {
    fn import(json: &JSON) -> Result<Self, FromJSONError>;
}
Expand description

A data structure that may be imported from JSON.

Required Methods§

Implementations on Foreign Types§

Implementors§