[][src]Struct async_std::os::unix::net::SocketAddr

pub struct SocketAddr { /* fields omitted */ }
This is supported on Unix only.

An address associated with a Unix socket.

Examples

use async_std::os::unix::net::UnixListener;

let socket = UnixListener::bind("/tmp/socket").await?;
let addr = socket.local_addr()?;

Methods

impl SocketAddr[src]

pub fn is_unnamed(&self) -> bool[src]

This is supported on Unix only.

Returns true if the address is unnamed.

Examples

A named address:

use async_std::os::unix::net::UnixListener;

let socket = UnixListener::bind("/tmp/socket").await?;
let addr = socket.local_addr()?;
assert_eq!(addr.is_unnamed(), false);

An unnamed address:

use async_std::os::unix::net::UnixDatagram;

let socket = UnixDatagram::unbound().await?;
let addr = socket.local_addr()?;
assert_eq!(addr.is_unnamed(), true);

pub fn as_pathname(&self) -> Option<&Path>[src]

This is supported on Unix only.

Returns the contents of this address if it is a pathname address.

Examples

With a pathname:

use async_std::os::unix::net::UnixListener;
use async_std::path::Path;

let socket = UnixListener::bind("/tmp/socket").await?;
let addr = socket.local_addr()?;
assert_eq!(addr.as_pathname(), Some(Path::new("/tmp/socket")));

Without a pathname:

use async_std::os::unix::net::UnixDatagram;

let socket = UnixDatagram::unbound()?;
let addr = socket.local_addr()?;
assert_eq!(addr.as_pathname(), None);

Trait Implementations

impl Clone for SocketAddr[src]

impl Debug for SocketAddr[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.