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§
Sourceconst CODE: HypercallCode
const CODE: HypercallCode
The hypercall code.
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.