pub trait Seek {
    // Required method
    fn seek(
        &mut self,
        pos: SeekFrom
    ) -> impl Future<Output = Result<u64>> + Send;
}

Required Methods§

source

fn seek(&mut self, pos: SeekFrom) -> impl Future<Output = Result<u64>> + Send

Object Safety§

This trait is not object safe.

Implementors§