#[repr(C, packed(1))]pub struct RootSystemDescriptionTable {
pub header: SDTHeader,
pub entry: [u32; 0],
}Expand description
§Root System Description Table structure.
Fields§
§header: SDTHeader- Signature - “RSDT”
- Revision - 1
- OEM Table ID - For the RSDT, the table ID is the manufacture model ID. This field must match the OEM Table ID in the FADT structure.
entry: [u32; 0]An array of 32-bit physical addresses that point to other System Description Tables.
OSPM assumes at least the System Description Table is addressable, and then can further address the table based upon its Length field.
Implementations§
Trait Implementations§
Source§impl Clone for RootSystemDescriptionTable
impl Clone for RootSystemDescriptionTable
Source§fn clone(&self) -> RootSystemDescriptionTable
fn clone(&self) -> RootSystemDescriptionTable
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 RootSystemDescriptionTable
Auto Trait Implementations§
impl Freeze for RootSystemDescriptionTable
impl RefUnwindSafe for RootSystemDescriptionTable
impl Send for RootSystemDescriptionTable
impl Sync for RootSystemDescriptionTable
impl Unpin for RootSystemDescriptionTable
impl UnwindSafe for RootSystemDescriptionTable
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