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