pub trait FromGraphQLJson {
fn from_graphql_json(json: &Value) -> Result<Self>
where
Self: Sized;
}
Expand description
Trait that deserializes a struct from graphql json
Required Methods
sourcefn from_graphql_json(json: &Value) -> Result<Self>where
Self: Sized,
fn from_graphql_json(json: &Value) -> Result<Self>where
Self: Sized,
Deserialize from graphql json