pub struct PciBus {
pub bus_number: u8,
pub devices: Vec<PciDevice>,
}
Expand description
A PCI bus, which contains a list of PCI devices on that bus.
Fields§
§bus_number: u8
The number identifier of this PCI bus.
devices: Vec<PciDevice>
The list of devices attached to this PCI bus.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for PciBus
impl Send for PciBus
impl Sync for PciBus
impl Unpin for PciBus
impl UnwindSafe for PciBus
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