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