pub trait PciDevice {
// Required methods
fn probe_init(config: &PciDeviceConfig, extra: ProbeExtra) -> Option<Self>
where Self: Sized;
fn device_name(&self) -> &'static str;
}
pub trait PciDevice {
// Required methods
fn probe_init(config: &PciDeviceConfig, extra: ProbeExtra) -> Option<Self>
where Self: Sized;
fn device_name(&self) -> &'static str;
}