pub enum PciBridgeSubclass {
HostBridge = 0,
IsaBridge = 1,
EisaBridge = 2,
McaBridge = 3,
PciToPciBridge = 4,
PcmciaBridge = 5,
NuBusBridge = 6,
CardBusBridge = 7,
RacEwayBridge = 8,
PciToPciSemiTransparentBridge = 9,
InfiniBrandToPciHostBridge = 10,
OtherBridgeDevice = 128,
}Expand description
Subclasses of the BridgeDevice
Variants§
HostBridge = 0
IsaBridge = 1
EisaBridge = 2
McaBridge = 3
PciToPciBridge = 4
PcmciaBridge = 5
NuBusBridge = 6
CardBusBridge = 7
RacEwayBridge = 8
PciToPciSemiTransparentBridge = 9
InfiniBrandToPciHostBridge = 10
OtherBridgeDevice = 128
Trait Implementations§
Source§impl Clone for PciBridgeSubclass
impl Clone for PciBridgeSubclass
Source§fn clone(&self) -> PciBridgeSubclass
fn clone(&self) -> PciBridgeSubclass
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 moreSource§impl PciSubclass for PciBridgeSubclass
impl PciSubclass for PciBridgeSubclass
Source§fn get_register_value(&self) -> u8
fn get_register_value(&self) -> u8
Convert this subclass to the value used in the PCI specification.
impl Copy for PciBridgeSubclass
Auto Trait Implementations§
impl Freeze for PciBridgeSubclass
impl RefUnwindSafe for PciBridgeSubclass
impl Send for PciBridgeSubclass
impl Sync for PciBridgeSubclass
impl Unpin for PciBridgeSubclass
impl UnwindSafe for PciBridgeSubclass
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