openvmm_helpers/
lib.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Functions used by OpenVMM entry points to help construct resources.
5
6#![forbid(unsafe_code)]
7
8pub mod disk;
9pub mod shared_memory;
10pub mod snapshot;
11pub mod underhill;