1// Copyright (c) Microsoft Corporation. 2// Licensed under the MIT License. 3 4//! Type definitions for loading guest firmware, available as no_std if no features are defined. 5 6#![no_std] 7 8pub mod linux; 9pub mod paravisor; 10pub mod shim;