// Copyright 2026 The Cloud Hypervisor Authors. All rights reserved. // // SPDX-License-Identifier: Apache-2.0 //! Sync/async I/O workers for fixed VHD images. //! //! Thin wrappers around the raw workers that clamp I/O to the //! virtual disk size. #[cfg(feature = "io_uring")] pub(crate) mod async_uring; mod common; pub(crate) mod sync;