From 98fedac77f4c66caf5cf5f7b109741f3b6ff3acc Mon Sep 17 00:00:00 2001 From: Muminul Islam Date: Mon, 23 Mar 2026 13:31:50 -0700 Subject: [PATCH] block: Derive Debug on RawFileDiskSync Add #[derive(Debug)] to RawFileDiskSync. This is required by the new disk_file traits which have Send + Debug bounds. Signed-off-by: Muminul Islam --- block/src/raw_sync.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/block/src/raw_sync.rs b/block/src/raw_sync.rs index c045c5942..0051c1b67 100644 --- a/block/src/raw_sync.rs +++ b/block/src/raw_sync.rs @@ -15,6 +15,7 @@ use crate::async_io::{ }; use crate::{DiskTopology, SECTOR_SIZE, probe_sparse_support, query_device_size}; +#[derive(Debug)] pub struct RawFileDiskSync { file: File, }