Struct std::os::unix::net::SocketAddr 1.10.0[−][src]
pub struct SocketAddr { /* fields omitted */ }
This is supported on Unix only.
An address associated with a Unix socket.
Examples
use std::os::unix::net::UnixListener; let socket = match UnixListener::bind("/tmp/sock") { Ok(sock) => sock, Err(e) => { println!("Couldn't bind: {:?}", e); return } }; let addr = socket.local_addr().expect("Couldn't get local address");Run
Methods
impl SocketAddr
[src]
impl SocketAddr
pub fn is_unnamed(&self) -> bool
[src]
pub fn is_unnamed(&self) -> bool
This is supported on Unix only.
Returns true if and only if the address is unnamed.
Examples
A named address:
use std::os::unix::net::UnixListener; let socket = UnixListener::bind("/tmp/sock").unwrap(); let addr = socket.local_addr().expect("Couldn't get local address"); assert_eq!(addr.is_unnamed(), false);Run
An unnamed address:
use std::os::unix::net::UnixDatagram; let socket = UnixDatagram::unbound().unwrap(); let addr = socket.local_addr().expect("Couldn't get local address"); assert_eq!(addr.is_unnamed(), true);Run
pub fn as_pathname(&self) -> Option<&Path>
[src]
pub fn as_pathname(&self) -> Option<&Path>
This is supported on Unix only.
Returns the contents of this address if it is a pathname
address.
Examples
With a pathname:
use std::os::unix::net::UnixListener; use std::path::Path; let socket = UnixListener::bind("/tmp/sock").unwrap(); let addr = socket.local_addr().expect("Couldn't get local address"); assert_eq!(addr.as_pathname(), Some(Path::new("/tmp/sock")));Run
Without a pathname:
use std::os::unix::net::UnixDatagram; let socket = UnixDatagram::unbound().unwrap(); let addr = socket.local_addr().expect("Couldn't get local address"); assert_eq!(addr.as_pathname(), None);Run
Trait Implementations
impl Clone for SocketAddr
[src]
impl Clone for SocketAddr
fn clone(&self) -> SocketAddr
[src]
fn clone(&self) -> SocketAddr
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl Debug for SocketAddr
[src]
impl Debug for SocketAddr
Auto Trait Implementations
impl Send for SocketAddr
impl Send for SocketAddr
impl Sync for SocketAddr
impl Sync for SocketAddr