#[repr(C, packed(1))]struct Rsdp {
    pub(crate) signature: [u8; 8],
    checksum: u8,
    oem_id: [u8; 6],
    pub(crate) revision: u8,
    pub(crate) rsdt_addr: u32,
}Expand description
ACPI 1.0 Root System Description Pointer (RSDP)
Fields§
§signature: [u8; 8]§checksum: u8§oem_id: [u8; 6]§revision: u8§rsdt_addr: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for Rsdp
impl RefUnwindSafe for Rsdp
impl Send for Rsdp
impl Sync for Rsdp
impl Unpin for Rsdp
impl UnwindSafe for Rsdp
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