Enum nix::sys::socket::SockAddr [] [src]

pub enum SockAddr {
    Inet(InetAddr),
    Unix(UnixAddr),
}

Represents a socket address

Variants

Inet(InetAddr)Unix(UnixAddr)

Methods

impl SockAddr
[src]

fn new_inet(addr: InetAddr) -> SockAddr

fn new_unix<P: ?Sized + NixPath>(path: &P) -> Result<SockAddr>

fn family(&self) -> AddressFamily

fn to_str(&self) -> String

unsafe fn as_ffi_pair(&self) -> (&sockaddr, socklen_t)

Trait Implementations

impl Copy for SockAddr
[src]

impl PartialEq for SockAddr
[src]

fn eq(&self, other: &SockAddr) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Eq for SockAddr
[src]

impl Hash for SockAddr
[src]

fn hash<H: Hasher>(&self, s: &mut H)

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

impl Clone for SockAddr
[src]

fn clone(&self) -> SockAddr

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Display for SockAddr
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.