pub trait WriteSeek: Write + Seek { }
Because you can’t do dyn Read + Write in Rust, this trait is used to combine both traits.
dyn Read + Write