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§

source

fn resolve(generic_vcpu_state: &mut GenericVCpuState<'_>) -> Option<Self>where Self: Sized,

Resolve the requested hypercall.

Implementors§