pub struct AcpiTable { /* private fields */ }Expand description
Add ACPI table with specified header fields and context from specified files. For file=, take whole ACPI table from the specified files, including all ACPI headers (possible overridden by other options). For data=, only data portion of the table is used, all header information is specified in the command line. If a SLIC table is supplied to QEMU, then the SLIC’s oem_id and oem_table_id fields will override the same in the RSDT and the FADT (a.k.a. FACP), in order to ensure the field matches required by the Microsoft SLIC spec and the ACPI spec.
Implementations§
Trait Implementations§
Source§impl Ord for AcpiTable
impl Ord for AcpiTable
Source§impl PartialOrd for AcpiTable
impl PartialOrd for AcpiTable
Source§impl ToCommand for AcpiTable
impl ToCommand for AcpiTable
fn to_command(&self) -> Vec<String>
fn to_single_command(&self) -> String
impl Eq for AcpiTable
impl StructuralPartialEq for AcpiTable
Auto Trait Implementations§
impl Freeze for AcpiTable
impl RefUnwindSafe for AcpiTable
impl Send for AcpiTable
impl Sync for AcpiTable
impl Unpin for AcpiTable
impl UnwindSafe for AcpiTable
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