From be6ce5b87858337d47afcf7449430514b023d967 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 24 Mar 2026 17:10:21 +0100 Subject: [PATCH] block: vhd: impl DiskFile for FixedVhdDiskAsync Marker impl bundling DiskSize and Geometry supertraits. Signed-off-by: Anatol Belski --- block/src/fixed_vhd_async.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/block/src/fixed_vhd_async.rs b/block/src/fixed_vhd_async.rs index c265636c8..8f6b37db1 100644 --- a/block/src/fixed_vhd_async.rs +++ b/block/src/fixed_vhd_async.rs @@ -88,6 +88,8 @@ impl disk_file::Resizable for FixedVhdDiskAsync { } } +impl disk_file::DiskFile for FixedVhdDiskAsync {} + pub struct FixedVhdAsync { raw_file_async: RawFileAsync, size: u64,