pub struct UnixListener { /* private fields */ }
Expand description

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.

Implementations

Creates a new UnixListener bound to the specified socket.

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.

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.

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.

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.

Returns the local socket address of this listener.

Returns the value of the SO_ERROR option.

Trait Implementations

Extracts the raw file descriptor. Read more

Formats the value using the given formatter. Read more

Register self with the given Poll instance. Read more

Re-register self with the given Poll instance. Read more

Deregister self from the given Poll instance Read more

Constructs a new instance of Self from the given raw file descriptor. Read more

Consumes this object, returning the raw underlying file descriptor. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.