@@ -105,7 +105,7 @@ pub struct Incoming<'a> {
105105///
106106/// [`accept`]: TcpListener::accept
107107#[ derive( Debug ) ]
108- #[ unstable( feature = "tcplistener_into_incoming" , issue = "88339 " ) ]
108+ #[ unstable( feature = "tcplistener_into_incoming" , issue = "88373 " ) ]
109109pub struct IntoIncoming {
110110 listener : TcpListener ,
111111}
@@ -894,7 +894,7 @@ impl TcpListener {
894894 /// }
895895 /// ```
896896 #[ must_use = "`self` will be dropped if the result is not used" ]
897- #[ unstable( feature = "tcplistener_into_incoming" , issue = "88339 " ) ]
897+ #[ unstable( feature = "tcplistener_into_incoming" , issue = "88373 " ) ]
898898 pub fn into_incoming ( self ) -> IntoIncoming {
899899 IntoIncoming { listener : self }
900900 }
@@ -1033,15 +1033,15 @@ impl<'a> Iterator for Incoming<'a> {
10331033#[ stable( feature = "tcp_listener_incoming_fused_iterator" , since = "1.64.0" ) ]
10341034impl FusedIterator for Incoming < ' _ > { }
10351035
1036- #[ unstable( feature = "tcplistener_into_incoming" , issue = "88339 " ) ]
1036+ #[ unstable( feature = "tcplistener_into_incoming" , issue = "88373 " ) ]
10371037impl Iterator for IntoIncoming {
10381038 type Item = io:: Result < TcpStream > ;
10391039 fn next ( & mut self ) -> Option < io:: Result < TcpStream > > {
10401040 Some ( self . listener . accept ( ) . map ( |p| p. 0 ) )
10411041 }
10421042}
10431043
1044- #[ unstable( feature = "tcplistener_into_incoming" , issue = "88339 " ) ]
1044+ #[ unstable( feature = "tcplistener_into_incoming" , issue = "88373 " ) ]
10451045impl FusedIterator for IntoIncoming { }
10461046
10471047impl AsInner < net_imp:: TcpListener > for TcpListener {
0 commit comments