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