Zeroes a range in the file.
impl File { fn zero<R>(&self, range: R) -> Result<(), Errno> where R: BoundedRange<u64>, }
The range that should be zeroed.
This can be more efficient than manually writing zeroes.
fallocate(2)