Seek in async_std::io - Rust (original) (raw)
pub trait Seek {
// Required method
fn poll_seek(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
pos: SeekFrom,
) -> Poll<Result<u64, Error>>;
}
Expand description
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.
Attempt to seek to an offset, in bytes, in a stream.
A seek beyond the end of a stream is allowed, but behavior is defined by the implementation.
If the seek operation completed successfully, this method returns the new position from the start of the stream. That position can be used later with SeekFrom::Start.
§Errors
Seeking to a negative offset is considered an error.
§Implementation
This function may not return errors of kind WouldBlock
orInterrupted
. Implementations must convert WouldBlock
intoPoll::Pending
and either internally retry or convertInterrupted
into another error kind.
Seeks to an offset, in bytes, in the underlying reader.
The position used for seeking with SeekFrom::Current is the position the underlying reader would be at if the BufReader had no internal buffer.
Seeking always discards the internal buffer, even if the seek position would otherwise fall within it. This guarantees that calling into_inner()immediately after a seek yields the underlying reader at the same position.
See AsyncSeek for more details.
Note: In the edge case where you’re seeking with SeekFrom::Current(n)
where n
minus the internal buffer length overflows an i64
, two seeks will be performed instead of one. If the second seek returns Err
, the underlying reader will be left at the same position it would have if you called seek() with SeekFrom::Current(0)
.
Seek to the offset, in bytes, in the underlying writer.
Seeking always writes out the internal buffer before seeking.