pub struct AMLTable<'a> {
pub header: DescriptionHeader,
pub body: Vec<TermObject<'a>>,
}
Expand description
An ACPI table that contains AML, such as the DSDT or an SSDT.
Fields§
§header: DescriptionHeader
Common ACPI table header
body: Vec<TermObject<'a>>
Top-level AML objects defined in the table
Trait Implementations§
impl<'a> Eq for AMLTable<'a>
impl<'a> StructuralPartialEq for AMLTable<'a>
Auto Trait Implementations§
impl<'a> Freeze for AMLTable<'a>
impl<'a> RefUnwindSafe for AMLTable<'a>
impl<'a> Send for AMLTable<'a>
impl<'a> Sync for AMLTable<'a>
impl<'a> Unpin for AMLTable<'a>
impl<'a> UnwindSafe for AMLTable<'a>
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