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