pub trait BlockingRead: Read + Send { }
Expand description

BlockingRead is a trait alias of std::io::Read to avoid repeating std::io::Read + Send across the codebase.

We use BlockingRead to accept users input.

Implementors§

source§

impl<T> BlockingRead for Twhere
    T: Read + Send,