File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
branches/try/src/libstd/io Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: aca2057ed5fb7af3f8905b2bc01f72fa001c35c8
3
3
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4
- refs/heads/try: 2d389c125e2ba7fdb6762120e1fa4e783fa7adad
4
+ refs/heads/try: 0d818b4ee4a978babc8781ece028a7d0e9ed2e36
5
5
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
6
6
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
7
7
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -454,13 +454,17 @@ impl<W: Read + Write> Read for InternalBufWriter<W> {
454
454
#[ unstable( feature = "buf_stream" ,
455
455
reason = "unsure about semantics of buffering two directions, \
456
456
leading to issues like #17136") ]
457
+ #[ deprecated( since = "1.2.0" ,
458
+ reason = "use the crates.io `bufstream` crate instead" ) ]
457
459
pub struct BufStream < S : Write > {
458
460
inner : BufReader < InternalBufWriter < S > >
459
461
}
460
462
461
463
#[ unstable( feature = "buf_stream" ,
462
464
reason = "unsure about semantics of buffering two directions, \
463
465
leading to issues like #17136") ]
466
+ #[ deprecated( since = "1.2.0" ,
467
+ reason = "use the crates.io `bufstream` crate instead" ) ]
464
468
impl < S : Read + Write > BufStream < S > {
465
469
/// Creates a new buffered stream with explicitly listed capacities for the
466
470
/// reader/writer buffer.
You can’t perform that action at this time.
0 commit comments