From ce1592d1df8fd9c36e850bd1dda314a36af318bf Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Tue, 24 Mar 2026 14:57:14 +0100 Subject: [PATCH] block: vhd: impl DiskFile for FixedVhdDiskSync Marker impl bundling DiskSize and Geometry supertraits. Signed-off-by: Anatol Belski --- block/src/fixed_vhd_sync.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/block/src/fixed_vhd_sync.rs b/block/src/fixed_vhd_sync.rs index 10836853a..92250fc8e 100644 --- a/block/src/fixed_vhd_sync.rs +++ b/block/src/fixed_vhd_sync.rs @@ -90,6 +90,8 @@ impl disk_file::Resizable for FixedVhdDiskSync { } } +impl disk_file::DiskFile for FixedVhdDiskSync {} + pub struct FixedVhdSync { raw_file_sync: RawFileSync, size: u64,