Add a macro that recursively builds the "migrated" version of a struct. Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
11 lines
186 B
Rust
11 lines
186 B
Rust
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
pub mod bindings;
|
|
|
|
pub use qemu_macros::ToMigrationState;
|
|
|
|
pub mod migratable;
|
|
pub use migratable::*;
|
|
|
|
pub mod vmstate;
|
|
pub use vmstate::*;
|