A PCI subclass. Each class in `PciClassCode` can specify a unique set of subclasses. This trait is implemented by each subclass. It allows use of a trait object to generate configurations.
| 80 | /// A PCI subclass. Each class in `PciClassCode` can specify a unique set of subclasses. This trait |
| 81 | /// is implemented by each subclass. It allows use of a trait object to generate configurations. |
| 82 | pub trait PciSubclass { |
| 83 | /// Convert this subclass to the value used in the PCI specification. |
| 84 | fn get_register_value(&self) -> u8; |
| 85 | } |
| 86 | |
| 87 | /// Subclasses of the MultimediaController class. |
| 88 | #[allow(dead_code)] |
nothing calls this directly
no outgoing calls
no test coverage detected