Stabilize unix_socket_creation

This commit is contained in:
Thomas de Zeeuw 2022-02-25 13:04:40 +01:00
parent 7f44b3a118
commit a84e77bebf

View File

@ -140,7 +140,6 @@ pub(super) fn from_parts(
/// # Examples
///
/// ```
/// #![feature(unix_socket_creation)]
/// use std::os::unix::net::SocketAddr;
/// use std::path::Path;
///
@ -154,12 +153,11 @@ pub(super) fn from_parts(
/// Creating a `SocketAddr` with a NULL byte results in an error.
///
/// ```
/// #![feature(unix_socket_creation)]
/// use std::os::unix::net::SocketAddr;
///
/// assert!(SocketAddr::from_pathname("/path/with/\0/bytes").is_err());
/// ```
#[unstable(feature = "unix_socket_creation", issue = "93423")]
#[stable(feature = "unix_socket_creation", since = "1.61.0")]
pub fn from_pathname<P>(path: P) -> io::Result<SocketAddr>
where
P: AsRef<Path>,