#[repr(C, packed(1))]struct Xsdp {
    signature: [u8; 8],
    checksum: u8,
    oem_id: [u8; 6],
    revision: u8,
    _deprecated: u32,
    pub(crate) length: u32,
    pub(crate) xsdt_addr: u64,
    ext_checksum: u8,
    reserved: [u8; 3],
}Expand description
ACPI 2.0 Extended System Description Pointer (XSDP)
Fields§
§signature: [u8; 8]§checksum: u8§oem_id: [u8; 6]§revision: u8§_deprecated: u32§length: u32§xsdt_addr: u64§ext_checksum: u8§reserved: [u8; 3]Trait Implementations§
Auto Trait Implementations§
impl Freeze for Xsdp
impl RefUnwindSafe for Xsdp
impl Send for Xsdp
impl Sync for Xsdp
impl Unpin for Xsdp
impl UnwindSafe for Xsdp
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