block: Derive Debug on RawFileDisk

Add #[derive(Debug)] to RawFileDisk. This is required by the
new disk_file traits which have Send + Debug bounds.

Signed-off-by: Muminul Islam <muislam@microsoft.com>
This commit is contained in:
Muminul Islam
2026-03-24 17:17:33 -07:00
committed by Bo Chen
parent 6261cad0d8
commit 4586ca133a

View File

@@ -18,6 +18,7 @@ use crate::{
BatchRequest, DiskTopology, RequestType, SECTOR_SIZE, probe_sparse_support, query_device_size,
};
#[derive(Debug)]
pub struct RawFileDisk {
file: File,
}