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