mu_pi 7.0.0

Platform Initialization (PI) Specification definitions and support code in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Firmware File System (FFS) Definitions and Support Code
//!
//! Based on the values defined in the UEFI Platform Initialization (PI) Specification V1.8A Section 3.2.2
//! Firmware File System.
//!
//! ## License
//!
//! Copyright (C) Microsoft Corporation. All rights reserved.
//!
//! SPDX-License-Identifier: BSD-2-Clause-Patent
//!
pub mod attributes;
pub mod file;
pub mod guid;
pub mod section;