vm_memory/lib.rs
1// Copyright 2020 The ChromiumOS Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! Virtual machine guest memory abstraction.
6
7mod guest_address;
8pub mod guest_memory;
9pub mod udmabuf;
10mod udmabuf_bindings;
11
12pub use guest_address::*;
13pub use guest_memory::Error as GuestMemoryError;
14pub use guest_memory::*;