pub trait Seek { type Seek: Future<Output = Result<u64, Error>>; fn seek(&mut self, pos: SeekFrom) -> Self::Seek; }
Seeks to a position in an object.
A future that resolves to the result of Self::seek.
Self::seek
Seeks to a given position in this object.
Returns the new position from the start of this object.