pub enum PciRootCommand {
Add(PciAddress, Arc<Mutex<dyn BusDevice>>),
AddBridge(Arc<Mutex<PciBus>>),
Remove(PciAddress),
Kill,
}Variants§
Auto Trait Implementations§
impl Freeze for PciRootCommand
impl RefUnwindSafe for PciRootCommand
impl Send for PciRootCommand
impl Sync for PciRootCommand
impl Unpin for PciRootCommand
impl UnwindSafe for PciRootCommand
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