loader_defs/
lib.rs

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#![forbid(unsafe_code)]
8
9pub mod linux;
10pub mod paravisor;
11pub mod shim;