pub type JsonResult<T> = Result<T, JsonError>;
pub enum JsonResult<T> { Ok(T), Err(JsonError), }
Contains the success value
Contains the error value