pub trait Hypercall {
// Required method
fn resolve(generic_vcpu_state: &mut GenericVCpuState<'_>) -> Option<Self>
where Self: Sized;
}
Expand description
Trait that represent the enumeration of supported hypercall.
Required Methods§
sourcefn resolve(generic_vcpu_state: &mut GenericVCpuState<'_>) -> Option<Self>where
Self: Sized,
fn resolve(generic_vcpu_state: &mut GenericVCpuState<'_>) -> Option<Self>where Self: Sized,
Resolve the requested hypercall.