pub trait VFile: Read + Seek + Sync + Send { fn tell(&mut self) -> Result<u64> { ... } }
A trait that implement Read + Seek.