pub struct ConfigWriteResult {
pub mmio_remove: Vec<BusRange>,
pub mmio_add: Vec<BusRange>,
pub io_remove: Vec<BusRange>,
pub io_add: Vec<BusRange>,
pub removed_pci_devices: Vec<PciAddress>,
}Expand description
Result of a write to a device’s PCI configuration space. This value represents the state change(s) that occurred due to the write.
Fields§
§mmio_remove: Vec<BusRange>The BusRange in the vector will be removed from mmio_bus
mmio_add: Vec<BusRange>The BusRange in the vector will be added into mmio_bus
io_remove: Vec<BusRange>The BusRange in the vector will be removed from io_bus
io_add: Vec<BusRange>The BusRange in the vector will be added into io_bus
removed_pci_devices: Vec<PciAddress>Device specified at PciAddress will be removed after this config write
Vec<PciAddress>>: specified device will be removed after this config write
Trait Implementations§
Source§impl Clone for ConfigWriteResult
impl Clone for ConfigWriteResult
Source§fn clone(&self) -> ConfigWriteResult
fn clone(&self) -> ConfigWriteResult
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConfigWriteResult
impl Debug for ConfigWriteResult
Source§impl Default for ConfigWriteResult
impl Default for ConfigWriteResult
Source§fn default() -> ConfigWriteResult
fn default() -> ConfigWriteResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for ConfigWriteResult
impl PartialEq for ConfigWriteResult
impl Eq for ConfigWriteResult
impl StructuralPartialEq for ConfigWriteResult
Auto Trait Implementations§
impl Freeze for ConfigWriteResult
impl RefUnwindSafe for ConfigWriteResult
impl Send for ConfigWriteResult
impl Sync for ConfigWriteResult
impl Unpin for ConfigWriteResult
impl UnwindSafe for ConfigWriteResult
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