@@ -1472,7 +1472,7 @@ impl IntoRawFd for UnixDatagram {
1472
1472
/// # Examples
1473
1473
///
1474
1474
/// ```no_run
1475
- /// #![feature(unix_socket )]
1475
+ /// #![feature(unix_socket_seqpacket )]
1476
1476
/// use std::thread;
1477
1477
/// use std::os::unix::net::{UnixSeqpacket, UnixSeqpacketListener};
1478
1478
///
@@ -1517,7 +1517,7 @@ impl UnixSeqpacketListener {
1517
1517
/// # Examples
1518
1518
///
1519
1519
/// ```no_run
1520
- /// #![feature(unix_socket )]
1520
+ /// #![feature(unix_socket_seqpacket )]
1521
1521
/// use std::os::unix::net::UnixSeqpacketListener;
1522
1522
///
1523
1523
/// let listener = match UnixSeqpacketListener::bind("/path/to/the/socket") {
@@ -1555,7 +1555,7 @@ impl UnixSeqpacketListener {
1555
1555
/// # Examples
1556
1556
///
1557
1557
/// ```no_run
1558
- /// #![feature(unix_socket )]
1558
+ /// #![feature(unix_socket_seqpacket )]
1559
1559
/// use std::os::unix::net::UnixSeqpacketListener;
1560
1560
///
1561
1561
/// let listener = UnixSeqpacketListener::bind("/path/to/the/socket").unwrap();
@@ -1583,7 +1583,7 @@ impl UnixSeqpacketListener {
1583
1583
/// # Examples
1584
1584
///
1585
1585
/// ```no_run
1586
- /// #![feature(unix_socket )]
1586
+ /// #![feature(unix_socket_seqpacket )]
1587
1587
/// use std::os::unix::net::UnixSeqpacketListener;
1588
1588
///
1589
1589
/// let listener = UnixSeqpacketListener::bind("/path/to/the/socket").unwrap();
@@ -1600,7 +1600,7 @@ impl UnixSeqpacketListener {
1600
1600
/// # Examples
1601
1601
///
1602
1602
/// ```no_run
1603
- /// #![feature(unix_socket )]
1603
+ /// #![feature(unix_socket_seqpacket )]
1604
1604
/// use std::os::unix::net::UnixSeqpacketListener;
1605
1605
///
1606
1606
/// let listener = UnixSeqpacketListener::bind("/path/to/the/socket").unwrap();
@@ -1617,7 +1617,7 @@ impl UnixSeqpacketListener {
1617
1617
/// # Examples
1618
1618
///
1619
1619
/// ```no_run
1620
- /// #![feature(unix_socket )]
1620
+ /// #![feature(unix_socket_seqpacket )]
1621
1621
/// use std::os::unix::net::UnixSeqpacketListener;
1622
1622
///
1623
1623
/// let listener = UnixSeqpacketListener::bind("/path/to/the/socket").unwrap();
@@ -1634,7 +1634,7 @@ impl UnixSeqpacketListener {
1634
1634
/// # Examples
1635
1635
///
1636
1636
/// ```no_run
1637
- /// #![feature(unix_socket )]
1637
+ /// #![feature(unix_socket_seqpacket )]
1638
1638
/// use std::os::unix::net::UnixSeqpacketListener;
1639
1639
///
1640
1640
/// let listener = UnixSeqpacketListener::bind("/tmp/sock").unwrap();
@@ -1659,7 +1659,7 @@ impl UnixSeqpacketListener {
1659
1659
/// # Examples
1660
1660
///
1661
1661
/// ```no_run
1662
- /// #![feature(unix_socket )]
1662
+ /// #![feature(unix_socket_seqpacket )]
1663
1663
/// use std::thread;
1664
1664
/// use std::os::unix::net::{UnixSeqpacket, UnixSeqpacketListener};
1665
1665
///
@@ -1727,7 +1727,7 @@ impl<'a> IntoIterator for &'a UnixSeqpacketListener {
1727
1727
/// # Examples
1728
1728
///
1729
1729
/// ```no_run
1730
- /// #![feature(unix_socket )]
1730
+ /// #![feature(unix_socket_seqpacket )]
1731
1731
/// use std::thread;
1732
1732
/// use std::os::unix::net::{UnixSeqpacket, UnixSeqpacketListener};
1733
1733
///
@@ -1775,7 +1775,7 @@ impl<'a> Iterator for IncomingSeqpacket<'a> {
1775
1775
/// # Examples
1776
1776
///
1777
1777
/// ```no_run
1778
- /// #![feature(unix_socket )]
1778
+ /// #![feature(unix_socket_seqpacket )]
1779
1779
/// use std::os::unix::net::UnixSeqpacket;
1780
1780
///
1781
1781
/// let path = "/path/to/my/socket";
@@ -1809,7 +1809,7 @@ impl UnixSeqpacket {
1809
1809
/// # Examples
1810
1810
///
1811
1811
/// ```no_run
1812
- /// #![feature(unix_socket )]
1812
+ /// #![feature(unix_socket_seqpacket )]
1813
1813
/// use std::os::unix::net::UnixSeqpacket;
1814
1814
///
1815
1815
/// let socket = match UnixSeqpacket::connect("/tmp/socket") {
@@ -1841,7 +1841,7 @@ impl UnixSeqpacket {
1841
1841
/// # Examples
1842
1842
///
1843
1843
/// ```no_run
1844
- /// #![feature(unix_socket )]
1844
+ /// #![feature(unix_socket_seqpacket )]
1845
1845
/// use std::os::unix::net::UnixSeqpacket;
1846
1846
///
1847
1847
/// let (sock1, sock2) = match UnixSeqpacket::pair() {
@@ -1867,7 +1867,7 @@ impl UnixSeqpacket {
1867
1867
/// # Examples
1868
1868
///
1869
1869
/// ```no_run
1870
- /// #![feature(unix_socket )]
1870
+ /// #![feature(unix_socket_seqpacket )]
1871
1871
/// use std::os::unix::net::UnixSeqpacket;
1872
1872
///
1873
1873
/// let socket = UnixSeqpacket::connect("/path/to/the/socket").unwrap();
@@ -1884,7 +1884,7 @@ impl UnixSeqpacket {
1884
1884
/// # Examples
1885
1885
///
1886
1886
/// ```no_run
1887
- /// #![feature(unix_socket )]
1887
+ /// #![feature(unix_socket_seqpacket )]
1888
1888
/// use std::os::unix::net::UnixSeqpacket;
1889
1889
///
1890
1890
/// let socket = UnixSeqpacket::connect("/path/to/the/socket").unwrap();
@@ -1901,7 +1901,7 @@ impl UnixSeqpacket {
1901
1901
/// # Examples
1902
1902
///
1903
1903
/// ```no_run
1904
- /// #![feature(unix_socket )]
1904
+ /// #![feature(unix_socket_seqpacket )]
1905
1905
/// use std::os::unix::net::UnixSeqpacket;
1906
1906
///
1907
1907
/// let socket = UnixSeqpacket::connect("/path/to/the/socket").unwrap();
@@ -1920,7 +1920,7 @@ impl UnixSeqpacket {
1920
1920
/// # Examples
1921
1921
///
1922
1922
/// ```no_run
1923
- /// #![feature(unix_socket )]
1923
+ /// #![feature(unix_socket_seqpacket )]
1924
1924
/// use std::os::unix::net::UnixSeqpacket;
1925
1925
///
1926
1926
/// let socket = UnixSeqpacket::connect("/path/to/the/socket").unwrap();
@@ -1939,7 +1939,7 @@ impl UnixSeqpacket {
1939
1939
/// # Examples
1940
1940
///
1941
1941
/// ```no_run
1942
- /// #![feature(unix_socket )]
1942
+ /// #![feature(unix_socket_seqpacket )]
1943
1943
/// use std::os::unix::net::UnixSeqpacket;
1944
1944
///
1945
1945
/// let socket = UnixSeqpacket::connect("/path/to/the/socket").unwrap();
@@ -1965,7 +1965,7 @@ impl UnixSeqpacket {
1965
1965
/// # Examples
1966
1966
///
1967
1967
/// ```no_run
1968
- /// #![feature(unix_socket )]
1968
+ /// #![feature(unix_socket_seqpacket )]
1969
1969
/// use std::os::unix::net::UnixSeqpacket;
1970
1970
/// use std::time::Duration;
1971
1971
///
@@ -1978,7 +1978,7 @@ impl UnixSeqpacket {
1978
1978
/// method:
1979
1979
///
1980
1980
/// ```no_run
1981
- /// #![feature(unix_socket )]
1981
+ /// #![feature(unix_socket_seqpacket )]
1982
1982
/// use std::io;
1983
1983
/// use std::os::unix::net::UnixSeqpacket;
1984
1984
/// use std::time::Duration;
@@ -2007,7 +2007,7 @@ impl UnixSeqpacket {
2007
2007
/// # Examples
2008
2008
///
2009
2009
/// ```no_run
2010
- /// #![feature(unix_socket )]
2010
+ /// #![feature(unix_socket_seqpacket )]
2011
2011
/// use std::os::unix::net::UnixSeqpacket;
2012
2012
/// use std::time::Duration;
2013
2013
///
@@ -2020,7 +2020,7 @@ impl UnixSeqpacket {
2020
2020
/// method:
2021
2021
///
2022
2022
/// ```no_run
2023
- /// #![feature(unix_socket )]
2023
+ /// #![feature(unix_socket_seqpacket )]
2024
2024
/// use std::io;
2025
2025
/// use std::os::unix::net::UnixSeqpacket;
2026
2026
/// use std::time::Duration;
@@ -2040,7 +2040,7 @@ impl UnixSeqpacket {
2040
2040
/// # Examples
2041
2041
///
2042
2042
/// ```no_run
2043
- /// #![feature(unix_socket )]
2043
+ /// #![feature(unix_socket_seqpacket )]
2044
2044
/// use std::os::unix::net::UnixSeqpacket;
2045
2045
/// use std::time::Duration;
2046
2046
///
@@ -2059,7 +2059,7 @@ impl UnixSeqpacket {
2059
2059
/// # Examples
2060
2060
///
2061
2061
/// ```no_run
2062
- /// #![feature(unix_socket )]
2062
+ /// #![feature(unix_socket_seqpacket )]
2063
2063
/// use std::os::unix::net::UnixSeqpacket;
2064
2064
/// use std::time::Duration;
2065
2065
///
@@ -2078,7 +2078,7 @@ impl UnixSeqpacket {
2078
2078
/// # Examples
2079
2079
///
2080
2080
/// ```no_run
2081
- /// #![feature(unix_socket )]
2081
+ /// #![feature(unix_socket_seqpacket )]
2082
2082
/// use std::os::unix::net::UnixSeqpacket;
2083
2083
///
2084
2084
/// let socket = UnixSeqpacket::connect("/path/to/the/socket").unwrap();
@@ -2094,7 +2094,7 @@ impl UnixSeqpacket {
2094
2094
/// # Examples
2095
2095
///
2096
2096
/// ```no_run
2097
- /// #![feature(unix_socket )]
2097
+ /// #![feature(unix_socket_seqpacket )]
2098
2098
/// use std::os::unix::net::UnixSeqpacket;
2099
2099
///
2100
2100
/// let socket = UnixSeqpacket::connect("/path/to/the/socket").unwrap();
@@ -2116,7 +2116,7 @@ impl UnixSeqpacket {
2116
2116
/// [`Shutdown`]: ../../../../std/net/enum.Shutdown.html
2117
2117
///
2118
2118
/// ```no_run
2119
- /// #![feature(unix_socket )]
2119
+ /// #![feature(unix_socket_seqpacket )]
2120
2120
/// use std::os::unix::net::UnixSeqpacket;
2121
2121
/// use std::net::Shutdown;
2122
2122
///
0 commit comments