uefi 0.7.0

Safe and easy-to-use wrapper for building UEFI apps
Documentation
//! 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;