virt

Trait X86Partition

Source
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§

Source

fn ioapic_routing(&self) -> Arc<dyn IoApicRouting>

Gets the IO-APIC routing control for VTL0.

Source

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.

Implementors§