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