pub enum PciDisplaySubclass {
VgaCompatibleController = 0,
XgaCompatibleController = 1,
ThreeDController = 2,
Other = 128,
}Expand description
Subclasses of the DisplayController class.
Variants§
Trait Implementations§
Source§impl Clone for PciDisplaySubclass
impl Clone for PciDisplaySubclass
Source§fn clone(&self) -> PciDisplaySubclass
fn clone(&self) -> PciDisplaySubclass
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 PciSubclass for PciDisplaySubclass
impl PciSubclass for PciDisplaySubclass
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 PciDisplaySubclass
Auto Trait Implementations§
impl Freeze for PciDisplaySubclass
impl RefUnwindSafe for PciDisplaySubclass
impl Send for PciDisplaySubclass
impl Sync for PciDisplaySubclass
impl Unpin for PciDisplaySubclass
impl UnwindSafe for PciDisplaySubclass
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