pub enum IrqSource {
Irqchip {
chip: u32,
pin: u32,
},
Msi {
address: u64,
data: u32,
},
}Expand description
A source of IRQs in an IrqRoute.
Variants§
Auto Trait Implementations§
impl Freeze for IrqSource
impl RefUnwindSafe for IrqSource
impl Send for IrqSource
impl Sync for IrqSource
impl Unpin for IrqSource
impl UnwindSafe for IrqSource
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