vm_superio_ser/lib.rs
1// Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2//
3// SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause
4
5//! Adds to the state objects from `vm-superio` serialization capabilities.
6//!
7//! Provides wrappers over the state objects from `vm-superio` crate which
8//! implement the `Serialize`, `Deserialize` and `Versionize` traits as well.
9
10#![deny(missing_docs)]
11
12pub mod rtc_pl031;
13pub mod serial;
14
15pub use rtc_pl031::RtcStateSer;
16pub use serial::SerialStateSer;