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),
}