We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f9a5f2 commit f90a0a6Copy full SHA for f90a0a6
uefi/src/table/mod.rs
@@ -1,21 +1,19 @@
1
//! Standard UEFI tables.
2
3
+pub mod boot;
4
+pub mod cfg;
5
+pub mod runtime;
6
+
7
+mod header;
8
+mod system;
9
10
+pub use header::Header;
11
+pub use system::{Boot, Runtime, SystemTable};
12
+pub use uefi_raw::table::Revision;
13
14
/// Common trait implemented by all standard UEFI tables.
15
pub trait Table {
16
/// A unique number assigned by the UEFI specification
17
/// to the standard tables.
18
const SIGNATURE: u64;
19
}
-
-mod header;
-pub use header::Header;
-mod system;
-pub use system::{Boot, Runtime, SystemTable};
-pub mod boot;
-pub mod runtime;
-pub mod cfg;
20
21
-pub use uefi_raw::table::Revision;
0 commit comments