pub type HvResult<T> = Result<T, HvError>;
A useful result type for hypervisor operations.
enum HvResult<T> { Ok(T), Err(HvError), }
Contains the success value
Contains the error value