[][src]Struct mio_uds::UnixListener

pub struct UnixListener { /* fields omitted */ }

A structure representing a Unix domain socket server.

This listener can be used to accept new streams connected to a remote endpoint, through which the read and write methods can be used to communicate.

Methods

impl UnixListener[src]

pub fn bind<P: AsRef<Path>>(path: P) -> Result<UnixListener>[src]

Creates a new UnixListener bound to the specified socket.

pub fn from_listener(stream: UnixListener) -> Result<UnixListener>[src]

Consumes a standard library UnixListener and returns a wrapped UnixListener compatible with mio.

The returned stream is moved into nonblocking mode and is otherwise ready to get associated with an event loop.

pub fn accept(&self) -> Result<Option<(UnixStream, SocketAddr)>>[src]

Accepts a new incoming connection to this listener.

When established, the corresponding UnixStream and the remote peer's address will be returned as Ok(Some(...)). If there is no connection waiting to be accepted, then Ok(None) is returned.

If an error happens while accepting, Err is returned.

pub fn accept_std(&self) -> Result<Option<(UnixStream, SocketAddr)>>[src]

Accepts a new incoming connection to this listener.

This method is the same as accept, except that it returns a net::UnixStream in blocking mode which isn't bound to a mio type. This can later be converted to a mio type, if necessary.

If an error happens while accepting, Err is returned.

pub fn try_clone(&self) -> Result<UnixListener>[src]

Creates a new independently owned handle to the underlying socket.

The returned UnixListener is a reference to the same socket that this object references. Both handles can be used to accept incoming connections and options set on one listener will affect the other.

pub fn local_addr(&self) -> Result<SocketAddr>[src]

Returns the local socket address of this listener.

pub fn take_error(&self) -> Result<Option<Error>>[src]

Returns the value of the SO_ERROR option.

Trait Implementations

impl AsRawFd for UnixListener[src]

impl Debug for UnixListener[src]

impl Evented for UnixListener[src]

impl FromRawFd for UnixListener[src]

impl IntoRawFd for UnixListener[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, 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.