Struct std::os::unix::net::SocketAddr1.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]

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

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]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SocketAddr
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for SocketAddr

impl Sync for SocketAddr