pub type NativeCallResult = VmResult<usize>;
pub enum NativeCallResult { Ok(usize), Err(VmExit), }
Contains the success value
Contains the error value