pub fn from_value<T>(value: Value) -> Result<T>where
T: DeserializeOwned,Expand description
Interpret a serde_json::Value as an instance of type T.
Equivalent to serde_json::from_value but with errors extended with serde_path_to_error.
See serde_json::from_value for more documentation.