pub trait X86Partition: Partition {
// Required methods
fn ioapic_routing(&self) -> Arc<dyn IoApicRouting>;
fn pulse_lint(&self, vp_index: VpIndex, vtl: Vtl, lint: u8);
}
Expand description
X86-specific partition methods.
Required Methods§
Sourcefn ioapic_routing(&self) -> Arc<dyn IoApicRouting>
fn ioapic_routing(&self) -> Arc<dyn IoApicRouting>
Gets the IO-APIC routing control for VTL0.
Sourcefn pulse_lint(&self, vp_index: VpIndex, vtl: Vtl, lint: u8)
fn pulse_lint(&self, vp_index: VpIndex, vtl: Vtl, lint: u8)
Pulses the specified APIC’s local interrupt line (0 or 1).
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.