patina_pi 11.4.1

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.
//!
//! SPDX-License-Identifier: Apache-2.0
//!
pub mod attributes;
pub mod file;
pub mod guid;
pub mod section;