rust: tests: do not import bindings::*
authorPaolo Bonzini <pbonzini@redhat.com>
Fri, 14 Feb 2025 11:10:33 +0000 (12:10 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 25 Feb 2025 15:18:11 +0000 (16:18 +0100)
Similar to the devices, spell the exact set of C functions that are
called directly.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
rust/qemu-api/tests/tests.rs

index 92dbfb8a0c86fcf16b144990ffc1c2c684a20cd4..03569e4a44c43e13e47a96407bb7600537bd6298 100644 (file)
@@ -8,13 +8,14 @@ use std::{
 };
 
 use qemu_api::{
-    bindings::*,
+    bindings::{module_call_init, module_init_type, object_new, object_unref, qdev_prop_bool},
     c_str,
     cell::{self, BqlCell},
     declare_properties, define_property,
     prelude::*,
     qdev::{DeviceClass, DeviceImpl, DeviceState, Property, ResettablePhasesImpl},
     qom::{ClassInitImpl, ObjectImpl, ParentField},
+    sysbus::SysBusDevice,
     vmstate::VMStateDescription,
     zeroable::Zeroable,
 };