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