pub trait PciBitFieldReadable: Debug {
    type Type: PciRegisterValue;

    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

The type of the register’s value.

Required Methods

Read the entire bit field at once.

Implementors