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