v0.11.15: lint cleanup — fmt + clippy clean

This commit is contained in:
Matt Jackson
2026-04-21 18:52:55 +00:00
parent afae37c8c3
commit 8843833ea7
16 changed files with 108 additions and 63 deletions
+3 -10
View File
@@ -81,20 +81,13 @@ pub enum EventKind {
},
/// Binary search isolated and recovered a marginal sector.
SectorRecovered {
sector: u64,
},
SectorRecovered { sector: u64 },
/// Sector unreadable, zero-filled (skip mode).
SectorSkipped {
sector: u64,
},
SectorSkipped { sector: u64 },
/// Binary search activated — batch failed, isolating bad sector.
BinarySearch {
sector: u64,
batch_size: u16,
},
BinarySearch { sector: u64, batch_size: u16 },
/// Operation complete.
Complete {