pub struct IommuGroup {
pub group_id: u32,
pub devices: Vec<PciAddress>,
pub attached: bool,
pub container_id: Option<u32>,
}Expand description
An IOMMU group containing one or more PCI devices
Fields§
§group_id: u32Group identifier
devices: Vec<PciAddress>Devices in this group
attached: boolWhether this group is attached to a container
container_id: Option<u32>Container reference (index)