|
|
@@ -16,14 +16,13 @@ impl Shell<R, W> {
|
|
16
|
16
|
}
|
|
17
|
17
|
|
|
18
|
18
|
impl BufRead for Shell<R, W> {
|
|
|
19
|
+ fn fill_buf(&mut self) -> Result<&[u8]> {}
|
|
|
20
|
+ fn consume(&mut self, amt: usize) {}
|
|
19
|
21
|
}
|
|
20
|
22
|
|
|
21
|
23
|
impl Write for Shell<R, W> {
|
|
22
|
24
|
fn write(&mut self, buf: &[u8]) -> Result<usize> {}
|
|
23
|
25
|
fn flush(&mut self) -> Result<()> {}
|
|
24
|
|
- fn write_all(&mut self, buf: &[u8]) -> Result<()> {}
|
|
25
|
|
- fn write_format(&mut self, fmt: Arguments) -> Result<()> {}
|
|
26
|
|
- fn by_ref(&mut self) -> &mut Self where Self: Sized, {}
|
|
27
|
26
|
}
|
|
28
|
27
|
|
|
29
|
28
|
|