Trait tusk_rs::json::FromJson

source ·
pub trait FromJson {
    // Required method
    fn from_json(json: &JsonObject) -> Result<Self, JsonParseError>
       where Self: Sized;
}
Expand description

FromJs is a trait that allows any conforming structs to be converted from a JSON format.

A default implemenation is most easily obtained by deriving this trait.

Required Methods§

source

fn from_json(json: &JsonObject) -> Result<Self, JsonParseError>
where Self: Sized,

Implementors§