[−][src]Trait futures_io::AsyncSeek
Seek bytes asynchronously.
This trait is analogous to the std::io::Seek
trait, but integrates
with the asynchronous task system. In particular, the poll_seek
method, unlike Seek::seek
, will automatically queue the current task
for wakeup and return if data is not yet available, rather than blocking
the calling thread.
Required methods
Implementations on Foreign Types
impl<T: ?Sized + AsyncSeek + Unpin> AsyncSeek for Box<T>
[src][−]
impl<T: ?Sized + AsyncSeek + Unpin, '_> AsyncSeek for &'_ mut T
[src][−]
impl<P> AsyncSeek for Pin<P> where
P: DerefMut + Unpin,
P::Target: AsyncSeek,
[src][−]
P: DerefMut + Unpin,
P::Target: AsyncSeek,