We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0651157 commit cc20ed6Copy full SHA for cc20ed6
src/libstd/sys/windows/stdio.rs
@@ -1,7 +1,5 @@
1
#![unstable(issue = "0", feature = "windows_stdio")]
2
3
-use io::prelude::*;
4
-
5
use cmp;
6
use io::{self, Cursor};
7
use ptr;
@@ -130,13 +128,6 @@ impl Stdin {
130
128
}
131
129
132
133
-#[unstable(reason = "not public", issue = "0", feature = "fd_read")]
134
-impl<'a> Read for &'a Stdin {
135
- fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
136
- (**self).read(buf)
137
- }
138
-}
139
140
impl Stdout {
141
pub fn new() -> io::Result<Stdout> {
142
Ok(Stdout)
0 commit comments