Type Alias Result

Source
pub type Result<T> = Result<T, VmFail>;
Expand description

A specialized Result type for VMX operations.

This type closely replicates VMX instruction conventions described in Intel SDM, Volume 3C, Section 30.2.

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(VmFail),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(VmFail)

Contains the error value