pub struct PciInterruptMap {
pub child_address: Vec<u32>,
pub child_irq: Vec<u32>,
pub interrupt_parent: Phandle,
pub parent_irq: Vec<u32>,
}Expand description
PCI interrupt mapping entry.
Represents a mapping from PCI device interrupts to parent interrupt controller inputs.
Fields§
§child_address: Vec<u32>Child device address (masked)
child_irq: Vec<u32>Child device IRQ (masked)
interrupt_parent: PhandlePhandle of the interrupt parent controller
parent_irq: Vec<u32>Parent controller IRQ inputs
Trait Implementations§
Source§impl Clone for PciInterruptMap
impl Clone for PciInterruptMap
Source§fn clone(&self) -> PciInterruptMap
fn clone(&self) -> PciInterruptMap
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for PciInterruptMap
impl RefUnwindSafe for PciInterruptMap
impl Send for PciInterruptMap
impl Sync for PciInterruptMap
impl Unpin for PciInterruptMap
impl UnsafeUnpin for PciInterruptMap
impl UnwindSafe for PciInterruptMap
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