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