pub enum AcpiPciPin {
IntA,
IntB,
IntC,
IntD,
}
Expand description
One of the four PCI interrupt pins
Variants§
IntA
The INTA#
interrupt pin
IntB
The INTB#
interrupt pin
IntC
The INTC#
interrupt pin
IntD
The INTD#
interrupt pin
Trait Implementations§
Source§impl Clone for AcpiPciPin
impl Clone for AcpiPciPin
Source§fn clone(&self) -> AcpiPciPin
fn clone(&self) -> AcpiPciPin
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 AcpiPciPin
impl Debug for AcpiPciPin
Source§impl PartialEq for AcpiPciPin
impl PartialEq for AcpiPciPin
impl Copy for AcpiPciPin
impl Eq for AcpiPciPin
impl StructuralPartialEq for AcpiPciPin
Auto Trait Implementations§
impl Freeze for AcpiPciPin
impl RefUnwindSafe for AcpiPciPin
impl Send for AcpiPciPin
impl Sync for AcpiPciPin
impl Unpin for AcpiPciPin
impl UnwindSafe for AcpiPciPin
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