Rename unix::net::SocketAddr::from_path to from_pathname
Matching SocketAddr::as_pathname.
This commit is contained in:
parent
03c8ffaacb
commit
7f44b3a118
1 changed files with 3 additions and 3 deletions
|
@ -145,7 +145,7 @@ impl SocketAddr {
|
|||
/// 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 @@ impl SocketAddr {
|
|||
/// #![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>,
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue