uefi_specs/uefi/
mod.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Type definitions taken directly from the UEFI spec.
5//!
6//! Each type in this module MUST include a doc comment that references the
7//! specific part of the UEFI spec it was pulled from.
8
9pub mod boot;
10pub mod common;
11pub mod nvram;
12pub mod signing;
13pub mod time;