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