pub trait AsyncSeek: for<'a> AsyncSeekWith<'a> { }Expand description
A cursor which can be moved within a stream of bytes.
This is an asynchronous version of std::io::Seek.
You should not implement this trait manually, instead implement AsyncSeekWith.