Trait opendal::raw::oio::ReadExt

source ·
pub trait ReadExt: Read {
    fn read<'a>(&'a mut self, buf: &'a mut [u8]) -> ReadFuture<'a, Self> { ... }
    fn seek(&mut self, pos: SeekFrom) -> SeekFuture<'_, Self> { ... }
    fn next(&mut self) -> NextFuture<'_, Self> { ... }
}
Expand description

Extension of Read to make it easier for use.

Provided Methods§

Build a future for poll_read.

Build a future for poll_seek.

Build a future for poll_next

Implementors§

Impl ReadExt for all T: Read