impl Read for &Stdin
is missing
#95622
Labels
A-io
Area: `std::io`, `std::fs`, `std::net` and `std::path`
E-easy
Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
T-libs-api
Relevant to the library API team, which will review and decide on the PR/issue.
It is possible to write to a
&Stdout
thanks toimpl Write for &Stdout
, but it is not possible to read from a&Stdin
as the correspondingimpl Read for &Stdin
is missing. This seems to be entirely an accident, given thatread_line
does work on&Stdin
.Cc @rust-lang/libs-api
The text was updated successfully, but these errors were encountered: