pub type Result<T> = Result<T, Error>;
Result type used by this crate.
Note: Since 0.9.0 the old JsonResult type is deprecated. Always use json::Result instead.
JsonResult
json::Result
enum Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value