@@ -23,92 +23,92 @@ pub fn pipe() -> io::Result<(AnonPipe, AnonPipe)> {
23
23
}
24
24
}
25
25
26
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
26
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
27
27
impl AsHandle for PipeReader {
28
28
fn as_handle ( & self ) -> BorrowedHandle < ' _ > {
29
29
self . 0 . as_handle ( )
30
30
}
31
31
}
32
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
32
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
33
33
impl AsRawHandle for PipeReader {
34
34
fn as_raw_handle ( & self ) -> RawHandle {
35
35
self . 0 . as_raw_handle ( )
36
36
}
37
37
}
38
38
39
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
39
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
40
40
impl FromRawHandle for PipeReader {
41
41
unsafe fn from_raw_handle ( raw_handle : RawHandle ) -> Self {
42
42
unsafe { Self ( Handle :: from_raw_handle ( raw_handle) ) }
43
43
}
44
44
}
45
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
45
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
46
46
impl IntoRawHandle for PipeReader {
47
47
fn into_raw_handle ( self ) -> RawHandle {
48
48
self . 0 . into_raw_handle ( )
49
49
}
50
50
}
51
51
52
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
52
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
53
53
impl From < PipeReader > for OwnedHandle {
54
54
fn from ( pipe : PipeReader ) -> Self {
55
55
Handle :: into_inner ( pipe. 0 )
56
56
}
57
57
}
58
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
58
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
59
59
impl From < PipeReader > for Stdio {
60
60
fn from ( pipe : PipeReader ) -> Self {
61
61
Self :: from ( OwnedHandle :: from ( pipe) )
62
62
}
63
63
}
64
64
65
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
65
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
66
66
impl AsHandle for PipeWriter {
67
67
fn as_handle ( & self ) -> BorrowedHandle < ' _ > {
68
68
self . 0 . as_handle ( )
69
69
}
70
70
}
71
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
71
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
72
72
impl AsRawHandle for PipeWriter {
73
73
fn as_raw_handle ( & self ) -> RawHandle {
74
74
self . 0 . as_raw_handle ( )
75
75
}
76
76
}
77
77
78
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
78
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
79
79
impl FromRawHandle for PipeWriter {
80
80
unsafe fn from_raw_handle ( raw_handle : RawHandle ) -> Self {
81
81
unsafe { Self ( Handle :: from_raw_handle ( raw_handle) ) }
82
82
}
83
83
}
84
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
84
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
85
85
impl IntoRawHandle for PipeWriter {
86
86
fn into_raw_handle ( self ) -> RawHandle {
87
87
self . 0 . into_raw_handle ( )
88
88
}
89
89
}
90
90
91
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
91
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
92
92
impl From < PipeWriter > for OwnedHandle {
93
93
fn from ( pipe : PipeWriter ) -> Self {
94
94
Handle :: into_inner ( pipe. 0 )
95
95
}
96
96
}
97
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
97
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
98
98
impl From < PipeWriter > for Stdio {
99
99
fn from ( pipe : PipeWriter ) -> Self {
100
100
Self :: from ( OwnedHandle :: from ( pipe) )
101
101
}
102
102
}
103
103
104
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
104
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
105
105
impl From < OwnedHandle > for PipeReader {
106
106
fn from ( owned_handle : OwnedHandle ) -> Self {
107
107
Self ( Handle :: from_inner ( owned_handle) )
108
108
}
109
109
}
110
110
111
- #[ unstable ( feature = "anonymous_pipe" , issue = "127154 " ) ]
111
+ #[ stable ( feature = "anonymous_pipe" , since = "CURRENT_RUSTC_VERSION " ) ]
112
112
impl From < OwnedHandle > for PipeWriter {
113
113
fn from ( owned_handle : OwnedHandle ) -> Self {
114
114
Self ( Handle :: from_inner ( owned_handle) )
0 commit comments