Trait wasm_pkg_client::ReaderSeeker

source ·
pub trait ReaderSeeker: AsyncRead + AsyncSeek { }
Expand description

A supertrait combining tokio’s AsyncRead and AsyncSeek.

Implementors§

source§

impl<T> ReaderSeeker for T
where T: AsyncRead + AsyncSeek,