#[repr(C, packed(1))]pub struct PersistentSystemDescriptionTable {
pub header: SDTHeader,
pub def_block: [u8; 0],
}Expand description
§Persistent System Description Table
The table signature, “PSDT” refers to the Persistent System Description Table (PSDT) defined in the ACPI 1.0 specification. The PSDT was judged to provide no specific benefit and as such has been deleted from follow-on versions of the ACPI specification. OSPM will evaluate a table with the “PSDT” signature in like manner to the evaluation of an SSDT as described in Section 5.2.11.2
Fields§
§header: SDTHeader- Signature - “PSDT”
def_block: [u8; 0]The bytes of AML code.
Implementations§
Trait Implementations§
Source§impl Clone for PersistentSystemDescriptionTable
impl Clone for PersistentSystemDescriptionTable
Source§fn clone(&self) -> PersistentSystemDescriptionTable
fn clone(&self) -> PersistentSystemDescriptionTable
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PersistentSystemDescriptionTable
Auto Trait Implementations§
impl Freeze for PersistentSystemDescriptionTable
impl RefUnwindSafe for PersistentSystemDescriptionTable
impl Send for PersistentSystemDescriptionTable
impl Sync for PersistentSystemDescriptionTable
impl Unpin for PersistentSystemDescriptionTable
impl UnwindSafe for PersistentSystemDescriptionTable
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