pub trait TrySeek { // Required method fn try_seek(&mut self, seek_from: SeekFrom) -> Result<()>; }
Attempts to seek to the given offset from the start of the stream.