This is just a bit nicer. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Link: https://lore.kernel.org/r/20250827104147.717203-22-marcandre.lureau@redhat.com Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
22 lines
360 B
Rust
22 lines
360 B
Rust
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
pub use qemu_macros::{TryInto, Wrapper};
|
|
|
|
pub mod assertions;
|
|
|
|
pub mod bitops;
|
|
|
|
pub mod callbacks;
|
|
pub use callbacks::FnCall;
|
|
|
|
pub mod errno;
|
|
pub use errno::Errno;
|
|
|
|
pub mod opaque;
|
|
pub use opaque::{Opaque, Wrapper};
|
|
|
|
pub mod uninit;
|
|
pub use uninit::MaybeUninitField;
|
|
|
|
pub mod zeroable;
|
|
pub use zeroable::Zeroable;
|