Trait completion_io::AsyncSeek[][src]

pub trait AsyncSeek: for<'a> AsyncSeekWith<'a> { }

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.

Implementors

impl<T: for<'a> AsyncSeekWith<'a> + ?Sized> AsyncSeek for T[src]

Loading content...