Trait system_interface::io::Peek
source · [−]Expand description
A trait providing the peek
function for reading without consuming.
Many common Read
implementations have Peek
implementations, however
Stdin
, ChildStderr
, ChildStdout
, PipeReader
, and
CharDevice
do not, since they are unbuffered and pipes and character
devices don’t support any form of peeking.