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