pub trait Writer: Write + Seek { // Required method fn set_len(&mut self, size: u64) -> Result<()>; }
A union trait for Write and Seek that also allows truncation.
Write
Seek
Sets the length of the output stream.