pub enum DeviceInterruptMode {
Disabled = 0,
LegacyIrq = 1,
GenericMsiIrq = 2,
PciMsiIrq = 3,
PciMsixIrq = 4,
}
Expand description
Device interrupt working modes.
Variants§
Disabled = 0
The device interrupt manager has been disabled.
LegacyIrq = 1
The device interrupt manager works in legacy irq mode.
GenericMsiIrq = 2
The device interrupt manager works in generic MSI mode.
PciMsiIrq = 3
The device interrupt manager works in PCI MSI mode.
PciMsixIrq = 4
The device interrupt manager works in PCI MSI-x mode.
Trait Implementations§
Source§impl Clone for DeviceInterruptMode
impl Clone for DeviceInterruptMode
Source§fn clone(&self) -> DeviceInterruptMode
fn clone(&self) -> DeviceInterruptMode
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeviceInterruptMode
impl Debug for DeviceInterruptMode
Source§impl PartialEq for DeviceInterruptMode
impl PartialEq for DeviceInterruptMode
impl Copy for DeviceInterruptMode
impl Eq for DeviceInterruptMode
impl StructuralPartialEq for DeviceInterruptMode
Auto Trait Implementations§
impl Freeze for DeviceInterruptMode
impl RefUnwindSafe for DeviceInterruptMode
impl Send for DeviceInterruptMode
impl Sync for DeviceInterruptMode
impl Unpin for DeviceInterruptMode
impl UnwindSafe for DeviceInterruptMode
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