hv1_hypercall

Trait HypercallDefinition

Source
pub trait HypercallDefinition {
    const CODE: HypercallCode;
    const DATA: HypercallData;
}
Expand description

A trait defined on dummy objects to provide metadata for a hypercall.

Required Associated Constants§

Source

const CODE: HypercallCode

The hypercall code.

Source

const DATA: HypercallData

The associated hypercall metadata.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§