pub trait PciBitFieldReadable: Debug {
type Type: PciRegisterValue;
// Required method
fn read(&self) -> Result<Self::Type>;
}
Expand description
A PCI register of type that is a bit field and may be read.
Required Associated Types§
Sourcetype Type: PciRegisterValue
type Type: PciRegisterValue
The type of the register’s value.