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