wasm_pkg_client

Trait 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,