vmotherboard/chipset/backing/
mod.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! The various "backends" for components that get attached to the virtual
5//! motherboard.
6//!
7//! At this time, the only supported backing is `Arc<CloseableMutex<dyn ChipsetDevice>>`,
8//! but future backings will include Mesh-based remote `ChipsetDevice`
9//! implementations, state-unit backed VMBus devices, etc...
10
11pub mod arc_mutex;