Protocol std::io::BufferedReadable

protocol BufferedReadable<Self> { ... }
Self: Readable<Self>

Readable streams that have an internal buffer.

Streams implementing this protocol enables them to be used by method such as read_until, which is aware of the internal buffer.

Required methods