Skip to main content

vm_topology/
lib.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Types for describing VM topology (processor packages and layout, memory
5//! layout).
6
7#![forbid(unsafe_code)]
8
9pub mod cxl;
10pub mod layout;
11pub mod memory;
12pub mod pcie;
13pub mod processor;