pub enum PciExpressGeneration {
PCIExpressGen1,
PCIExpressGen2,
PCIExpressGen3,
PCIExpressGen4,
PCIExpressGen5,
PCIExpressGen6,
Undefined,
}
Expand description
The generation of PciExpress used by the slot.
Variants§
PCIExpressGen1
PCI Express Gen 1
PCIExpressGen2
PCI Express Gen 2
PCIExpressGen3
PCI Express Gen 3
PCIExpressGen4
PCI Express Gen 4
PCIExpressGen5
PCI Express Gen 5
PCIExpressGen6
PCI Express Gen 6 and Beyond
Undefined
Undefined
Trait Implementations§
Source§impl Debug for PciExpressGeneration
impl Debug for PciExpressGeneration
Source§impl PartialEq for PciExpressGeneration
impl PartialEq for PciExpressGeneration
Source§impl Serialize for PciExpressGeneration
impl Serialize for PciExpressGeneration
impl Eq for PciExpressGeneration
impl StructuralPartialEq for PciExpressGeneration
Auto Trait Implementations§
impl Freeze for PciExpressGeneration
impl RefUnwindSafe for PciExpressGeneration
impl Send for PciExpressGeneration
impl Sync for PciExpressGeneration
impl Unpin for PciExpressGeneration
impl UnwindSafe for PciExpressGeneration
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