pub enum PciInterruptModel<'a> {
Msix(&'a mut dyn RegisterMsi),
IntX(PciInterruptPin, LineInterrupt),
}
Expand description
What kind of PCI interrupts VirtioPciDevice
should use.
Variants§
Msix(&'a mut dyn RegisterMsi)
IntX(PciInterruptPin, LineInterrupt)
Auto Trait Implementations§
impl<'a> Freeze for PciInterruptModel<'a>
impl<'a> !RefUnwindSafe for PciInterruptModel<'a>
impl<'a> Send for PciInterruptModel<'a>
impl<'a> !Sync for PciInterruptModel<'a>
impl<'a> Unpin for PciInterruptModel<'a>
impl<'a> !UnwindSafe for PciInterruptModel<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more