Type Alias hvdef::HvRepResult

source ·
pub type HvRepResult = Result<(), (HvError, usize)>;
Expand description

Hypervisor result type for rep hypercalls. These hypercalls have either no or only rep output data, which is passed separately from the result. The error is an a tuple consisting of an HvError and the number of elements successfully processed prior to the error being returned. An Ok result implies that all input elements were processed successfully.

Aliased Type§

enum HvRepResult {
    Ok(()),
    Err((HvError, usize)),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err((HvError, usize))

Contains the error value