pub enum PciMassStorageSubclass {
ScsiStorage = 0,
IdeInterface = 1,
FloppyController = 2,
IpiController = 3,
RaidController = 4,
AtaController = 5,
SataController = 6,
SerialScsiController = 7,
NvmController = 8,
MassStorage = 128,
}Expand description
Mass Storage Sub Classes
Variants§
ScsiStorage = 0
IdeInterface = 1
FloppyController = 2
IpiController = 3
RaidController = 4
AtaController = 5
SataController = 6
SerialScsiController = 7
NvmController = 8
MassStorage = 128
Trait Implementations§
Source§impl Clone for PciMassStorageSubclass
impl Clone for PciMassStorageSubclass
Source§fn clone(&self) -> PciMassStorageSubclass
fn clone(&self) -> PciMassStorageSubclass
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 PciMassStorageSubclass
impl PciSubclass for PciMassStorageSubclass
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 PciMassStorageSubclass
Auto Trait Implementations§
impl Freeze for PciMassStorageSubclass
impl RefUnwindSafe for PciMassStorageSubclass
impl Send for PciMassStorageSubclass
impl Sync for PciMassStorageSubclass
impl Unpin for PciMassStorageSubclass
impl UnwindSafe for PciMassStorageSubclass
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