Skip to content

Commit f88b501

Browse files
authored
fix stability attribute for tcp::IntoIncoming
1 parent 1e53a90 commit f88b501

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

library/std/src/net/mod.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ pub use self::addr::{SocketAddr, SocketAddrV4, SocketAddrV6, ToSocketAddrs};
2525
pub use self::ip::{IpAddr, Ipv4Addr, Ipv6Addr, Ipv6MulticastScope};
2626
#[stable(feature = "rust1", since = "1.0.0")]
2727
pub use self::parser::AddrParseError;
28+
#[unstable(feature = "tcplistener_into_incoming", issue = "88339")]
29+
pub use self::tcp::IntoIncoming;
2830
#[stable(feature = "rust1", since = "1.0.0")]
29-
pub use self::tcp::{Incoming, IntoIncoming, TcpListener, TcpStream};
31+
pub use self::tcp::{Incoming, TcpListener, TcpStream};
3032
#[stable(feature = "rust1", since = "1.0.0")]
3133
pub use self::udp::UdpSocket;
3234

0 commit comments

Comments
 (0)