Trait opendal::raw::input::Read

source ·
pub trait Read: AsyncRead + Unpin + Send { }
Expand description

Read is a trait alias of [futures::AsyncRead] to avoid repeating futures::AsyncRead + Unpin + Send across the codebase.

We use Read to accept users input.

Implementors§

source§

impl<T> Read for Twhere T: AsyncRead + Unpin + Send,