diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2024-10-31 10:14:11 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-12-19 19:36:37 +0100 |
| commit | 716d89f9cc14faf784d83c945c40b7e8256ae525 (patch) | |
| tree | 5b35d8ba5a52d7594ad44c6dc1c3060e1e8f54ba /rust/qemu-api/src/qdev.rs | |
| parent | 4aed0296b307b6e2e3b7d38ee6c5204cf2dfe1ca (diff) | |
| download | focaccia-qemu-716d89f9cc14faf784d83c945c40b7e8256ae525.tar.gz focaccia-qemu-716d89f9cc14faf784d83c945c40b7e8256ae525.zip | |
rust: re-export C types from qemu-api submodules
Long term we do not want device code to use "bindings" at all, so make it possible to get the relevant types from the other modules of qemu-api. Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'rust/qemu-api/src/qdev.rs')
| -rw-r--r-- | rust/qemu-api/src/qdev.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/rust/qemu-api/src/qdev.rs b/rust/qemu-api/src/qdev.rs index ad4c12d097..07a502a837 100644 --- a/rust/qemu-api/src/qdev.rs +++ b/rust/qemu-api/src/qdev.rs @@ -6,10 +6,13 @@ use std::ffi::CStr; +pub use bindings::{DeviceClass, DeviceState, Property}; + use crate::{ - bindings::{self, DeviceClass, DeviceState, Error, ObjectClass, Property, VMStateDescription}, + bindings::{self, Error}, prelude::*, - qom::ClassInitImpl, + qom::{ClassInitImpl, ObjectClass}, + vmstate::VMStateDescription, }; /// Trait providing the contents of [`DeviceClass`]. |