pub struct BuiltPcieAcpiTables {
pub ssdt: Vec<u8>,
pub cedt: Option<Vec<u8>>,
}Expand description
Serialized PCIe-related ACPI tables.
Fields§
§ssdt: Vec<u8>SSDT bytes containing PCI host-bridge namespace objects.
cedt: Option<Vec<u8>>Optional CEDT bytes when at least one valid CXL host bridge is present.
Auto Trait Implementations§
impl Freeze for BuiltPcieAcpiTables
impl RefUnwindSafe for BuiltPcieAcpiTables
impl Send for BuiltPcieAcpiTables
impl Sync for BuiltPcieAcpiTables
impl Unpin for BuiltPcieAcpiTables
impl UnsafeUnpin for BuiltPcieAcpiTables
impl UnwindSafe for BuiltPcieAcpiTables
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