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