pub struct BuiltAcpiTables {
pub rdsp: Vec<u8>,
pub tables: Vec<u8>,
}
Expand description
Binary ACPI tables constructed by AcpiTablesBuilder
.
Fields§
§rdsp: Vec<u8>
The RDSP. Assumed to be given a whole page.
tables: Vec<u8>
The remaining tables pointed to by the RDSP.
Auto Trait Implementations§
impl Freeze for BuiltAcpiTables
impl RefUnwindSafe for BuiltAcpiTables
impl Send for BuiltAcpiTables
impl Sync for BuiltAcpiTables
impl Unpin for BuiltAcpiTables
impl UnwindSafe for BuiltAcpiTables
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