Skip to content

Commit f8e1695

Browse files
committed
uncomment out the into-stream failures
Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent f56fbda commit f8e1695

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/stream/into_stream.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ pub trait IntoStream {
2525
fn into_stream(self) -> Self::IntoStream;
2626
}
2727

28-
// impl<I: Stream + Send> IntoStream for I {
29-
// type Item = I::Item;
30-
// type IntoStream = I;
28+
impl<I: Stream + Send> IntoStream for I {
29+
type Item = I::Item;
30+
type IntoStream = I;
3131

32-
// #[inline]
33-
// fn into_stream(self) -> I {
34-
// self
35-
// }
36-
// }
32+
#[inline]
33+
fn into_stream(self) -> I {
34+
self
35+
}
36+
}

0 commit comments

Comments
 (0)