pub(crate) type VMResult<T> = Result<T, VMError>;
バイトコードの実行結果
enum VMResult<T> { Ok(T), Err(VMError), }
Contains the success value
Contains the error value