// SPDX-License-Identifier: MIT OR Apache-2.0
usesuper::Revision;/// All standard UEFI tables begin with a common header.
#[derive(Debug)]#[repr(C)]pubstructHeader{/// Unique identifier for this table.
pubsignature:u64,
/// Revision of the spec this table conforms to.
pubrevision: Revision,
/// The size in bytes of the entire table.
pubsize:u32,
/// 32-bit CRC-32-Castagnoli of the entire table,
/// calculated with this field set to 0.
pubcrc:u32,
/// Reserved field that must be set to 0.
_reserved:u32,
}