AsyncSeek

Trait AsyncSeek 

Source
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.

Implementors§

Source§

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