pub type BoxedReader = Pin<Box<dyn AsyncRead + Send + 'static, Global>>;
Type alias for Pin<Box<dyn AsyncRead + Send + 'static>>.
Pin<Box<dyn AsyncRead + Send + 'static>>
use futures_lite::io::AsyncReadExt; let reader = [1, 2, 3].boxed_reader();