vmm/vstate/mod.rs
1// Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4/// Module with the implementation of a Bus that can hold devices.
5pub mod bus;
6/// VM interrupts implementation.
7pub mod interrupts;
8/// Module with Kvm implementation.
9pub mod kvm;
10/// Module with GuestMemory implementation.
11pub mod memory;
12/// Resource manager for devices.
13pub mod resources;
14/// Module with Vcpu implementation.
15pub mod vcpu;
16/// Module with Vm implementation.
17pub mod vm;