Rename unix::net::SocketAddr::from_path to from_pathname

Matching SocketAddr::as_pathname.
This commit is contained in:
Thomas de Zeeuw 2022-02-25 13:03:41 +01:00
parent 03c8ffaacb
commit 7f44b3a118

View file

@ -145,7 +145,7 @@ pub(super) fn from_parts(
/// use std::path::Path;
///
/// # fn main() -> std::io::Result<()> {
/// let address = SocketAddr::from_path("/path/to/socket")?;
/// let address = SocketAddr::from_pathname("/path/to/socket")?;
/// assert_eq!(address.as_pathname(), Some(Path::new("/path/to/socket")));
/// # Ok(())
/// # }
@ -157,10 +157,10 @@ pub(super) fn from_parts(
/// #![feature(unix_socket_creation)]
/// use std::os::unix::net::SocketAddr;
///
/// assert!(SocketAddr::from_path("/path/with/\0/bytes").is_err());
/// assert!(SocketAddr::from_pathname("/path/with/\0/bytes").is_err());
/// ```
#[unstable(feature = "unix_socket_creation", issue = "93423")]
pub fn from_path<P>(path: P) -> io::Result<SocketAddr>
pub fn from_pathname<P>(path: P) -> io::Result<SocketAddr>
where
P: AsRef<Path>,
{