1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
//! Standard UEFI tables.
/// Common trait implemented by all standard UEFI tables.
pub trait Table {
    /// A unique number assigned by the UEFI specification
    /// to the standard tables.
    const SIGNATURE: u64;
}
mod header;
pub use self::header::Header;
mod revision;
pub use self::revision::Revision;
mod system;
pub use self::system::{Boot, Runtime, SystemTable};
pub mod boot;
pub mod runtime;
pub mod cfg;
