pub trait IoApicRouting: Send + Sync { // Required methods fn assert(&self, irq: u8); fn set_route(&self, irq: u8, request: Option<(u64, u32)>); }
Trait allowing the IO-APIC device to assert VM interrupts.
Asserts virtual interrupt line irq.
irq
Sets the MSI parameters to use when virtual interrupt line irq is asserted.