[][src]Trait futures_util::io::AsyncSeekExt

pub trait AsyncSeekExt: AsyncSeek {
    fn seek(&mut self, pos: SeekFrom) -> Seek<'_, Self>

Notable traits for Seek<'_, S>

impl<S: AsyncSeek + ?Sized + Unpin, '_> Future for Seek<'_, S> type Output = Result<u64>;

    where
        Self: Unpin
, { ... } }
This is supported on crate feature io only.

An extension trait which adds utility methods to AsyncSeek types.

Provided methods

fn seek(&mut self, pos: SeekFrom) -> Seek<'_, Self>

Notable traits for Seek<'_, S>

impl<S: AsyncSeek + ?Sized + Unpin, '_> Future for Seek<'_, S> type Output = Result<u64>;
where
    Self: Unpin

Creates a future which will seek an IO object, and then yield the new position in the object and the object itself.

In the case of an error the buffer and the object will be discarded, with the error yielded.

Loading content...

Implementors

impl<S: AsyncSeek + ?Sized> AsyncSeekExt for S[src]

Loading content...