uefi_raw/table/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Standard UEFI tables.

mod header;
mod revision;

pub mod boot;
pub mod configuration;
pub mod runtime;
pub mod system;

pub use header::Header;
pub use revision::Revision;