pub struct AmlTable {
pub phys_address: usize,
pub length: u32,
pub revision: u8,
}Fields§
§phys_address: usizeThe physical address of the start of the table. Add mem::size_of::<SdtHeader>() to this
to get the physical address of the start of the AML stream.
length: u32The length of the table, including the header.
revision: u8Trait Implementations§
Auto Trait Implementations§
impl Freeze for AmlTable
impl RefUnwindSafe for AmlTable
impl Send for AmlTable
impl Sync for AmlTable
impl Unpin for AmlTable
impl UnwindSafe for AmlTable
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