pub struct AcpiPciRoutingTableEntry<'a> {
pub pin: AcpiPciPin,
pub device_number: u16,
pub source_index: u32,
pub source: &'a str,
}
Expand description
An entry representing the IRQ mapping for a device
Fields§
§pin: AcpiPciPin
Which PCI interrupt pin the device is connected to
device_number: u16
An address relative to the bus the device is on. The device number is specified
source_index: u32
The index of a type of interrupt generated by the device
source: &'a str
A string
Trait Implementations§
Source§impl<'a> Clone for AcpiPciRoutingTableEntry<'a>
impl<'a> Clone for AcpiPciRoutingTableEntry<'a>
Source§fn clone(&self) -> AcpiPciRoutingTableEntry<'a>
fn clone(&self) -> AcpiPciRoutingTableEntry<'a>
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<'a> Debug for AcpiPciRoutingTableEntry<'a>
impl<'a> Debug for AcpiPciRoutingTableEntry<'a>
impl<'a> Copy for AcpiPciRoutingTableEntry<'a>
Auto Trait Implementations§
impl<'a> Freeze for AcpiPciRoutingTableEntry<'a>
impl<'a> RefUnwindSafe for AcpiPciRoutingTableEntry<'a>
impl<'a> Send for AcpiPciRoutingTableEntry<'a>
impl<'a> Sync for AcpiPciRoutingTableEntry<'a>
impl<'a> Unpin for AcpiPciRoutingTableEntry<'a>
impl<'a> UnwindSafe for AcpiPciRoutingTableEntry<'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