pub trait PunchHole { // Required method fn punch_hole(&self, offset: u64, length: u64) -> Result<()>; }
A trait for deallocating space in a file.
Replace a range of bytes with a hole.