Enum pci_types::device_type::DeviceType

source ·
pub enum DeviceType {
Show 105 variants Unknown, LegacyVgaCompatible, LegacyNotVgaCompatible, ScsiBusController, IdeController, FloppyController, IpiBusController, RaidController, AtaController, SataController, SasController, NvmeController, UfsController, OtherMassStorageController, EthernetController, TokenRingController, FddiController, AtmController, IsdnController, WorldFipController, PicmgController, OtherNetworkController, VgaCompatibleController, XgaController, ThreeDController, OtherDisplayController, VideoDevice, AudioDevice, TelephonyDevice, OtherMultimediaDevice, RamController, FlashController, OtherMemoryController, HostBridge, IsaBridge, EisaBridge, McaBridge, PciPciBridge, PcmciaBridge, NuBusBridge, CardBusBridge, RacewayBridge, SemiTransparentPciPciBridge, InfinibandPciHostBridge, OtherBridgeDevice, SerialController, ParallelPort, MultiportSerialController, Modem, GpibController, SmartCard, OtherCommunicationsDevice, InterruptController, DmaController, SystemTimer, RtcController, GenericPciHotPlugController, SdHostController, OtherSystemPeripheral, KeyboardController, Digitizer, MouseController, ScannerController, GameportController, OtherInputController, GenericDockingStation, OtherDockingStation, Processor386, Processor486, ProcessorPentium, ProcessorAlpha, ProcessorPowerPc, ProcessorMips, CoProcessor, FirewireController, AccessBusController, SsaBusController, UsbController, FibreChannelController, SmBusController, InfiniBandController, IpmiController, SercosController, CanBusController, IrdaController, ConsumerIrController, RfController, BluetoothController, BroadbandController, Ethernet5GHzController, Ethernet24GHzController, OtherWirelessController, IntelligentIoController, TvSatelliteCommunicationsController, AudioSatelliteCommunicationsController, VoiceSatelliteCommunicationsController, DataSatelliteCommunicationsController, NetworkCryptionController, EntertainmentCryptionController, OtherCryptionController, DpioModule, PerformanceCounter, CommunicationsSynchronizationController, ManagementCard, OtherSignalProcessingController,
}
Expand description

Combines the Base Class and the Sub-class of a device to classify it into a DeviceType. Combined with the device’s Interface, this can be enough to know how to drive the device.

Variants§

§

Unknown

§

LegacyVgaCompatible

§

LegacyNotVgaCompatible

§

ScsiBusController

§

IdeController

§

FloppyController

§

IpiBusController

§

RaidController

§

AtaController

§

SataController

§

SasController

§

NvmeController

§

UfsController

§

OtherMassStorageController

§

EthernetController

§

TokenRingController

§

FddiController

§

AtmController

§

IsdnController

§

WorldFipController

§

PicmgController

§

OtherNetworkController

§

VgaCompatibleController

§

XgaController

§

ThreeDController

§

OtherDisplayController

§

VideoDevice

§

AudioDevice

§

TelephonyDevice

§

OtherMultimediaDevice

§

RamController

§

FlashController

§

OtherMemoryController

§

HostBridge

§

IsaBridge

§

EisaBridge

§

McaBridge

§

PciPciBridge

§

PcmciaBridge

§

NuBusBridge

§

CardBusBridge

§

RacewayBridge

§

SemiTransparentPciPciBridge

§

InfinibandPciHostBridge

§

OtherBridgeDevice

§

SerialController

§

ParallelPort

§

MultiportSerialController

§

Modem

§

GpibController

§

SmartCard

§

OtherCommunicationsDevice

§

InterruptController

§

DmaController

§

SystemTimer

§

RtcController

§

GenericPciHotPlugController

§

SdHostController

§

OtherSystemPeripheral

§

KeyboardController

§

Digitizer

§

MouseController

§

ScannerController

§

GameportController

§

OtherInputController

§

GenericDockingStation

§

OtherDockingStation

§

Processor386

§

Processor486

§

ProcessorPentium

§

ProcessorAlpha

§

ProcessorPowerPc

§

ProcessorMips

§

CoProcessor

§

FirewireController

§

AccessBusController

§

SsaBusController

§

UsbController

§

FibreChannelController

§

SmBusController

§

InfiniBandController

§

IpmiController

§

SercosController

§

CanBusController

§

IrdaController

§

ConsumerIrController

§

RfController

§

BluetoothController

§

BroadbandController

§

Ethernet5GHzController

§

Ethernet24GHzController

§

OtherWirelessController

§

IntelligentIoController

§

TvSatelliteCommunicationsController

§

AudioSatelliteCommunicationsController

§

VoiceSatelliteCommunicationsController

§

DataSatelliteCommunicationsController

§

NetworkCryptionController

§

EntertainmentCryptionController

§

OtherCryptionController

§

DpioModule

§

PerformanceCounter

§

CommunicationsSynchronizationController

§

ManagementCard

§

OtherSignalProcessingController

Trait Implementations§

source§

impl Clone for DeviceType

source§

fn clone(&self) -> DeviceType

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for DeviceType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<(u8, u8)> for DeviceType

source§

fn from(class: (BaseClass, SubClass)) -> Self

Converts to this type from the input type.
source§

impl PartialEq for DeviceType

source§

fn eq(&self, other: &DeviceType) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for DeviceType

source§

impl Eq for DeviceType

source§

impl StructuralPartialEq for DeviceType

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.