mylang_vm

Type Alias VMResult

source
pub(crate) type VMResult<T> = Result<T, VMError>;
Expand description

バイトコードの実行結果

Aliased Type§

enum VMResult<T> {
    Ok(T),
    Err(VMError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(VMError)

Contains the error value