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