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