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