Struct tokio_uds::UnixListener

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

A Unix socket which can accept connections from other Unix sockets.

Implementations§

Creates a new UnixListener bound to the specified path.

Consumes a UnixListener in the standard library and returns a nonblocking UnixListener from this crate.

The returned listener will be associated with the given event loop specified by handle and is ready to perform I/O.

Returns the local socket address of this listener.

Test whether this socket is ready to be read or not.

Returns the value of the SO_ERROR option.

Attempt to accept a connection and create a new connected UnixStream if successful.

This function will attempt an accept operation, but will not block waiting for it to complete. If the operation would block then a “would block” error is returned. Additionally, if this method would block, it registers the current task to receive a notification when it would otherwise not block.

Note that typically for simple usage it’s easier to treat incoming connections as a Stream of UnixStreams with the incoming method below.

Panics

This function will panic if it is called outside the context of a future’s task. It’s recommended to only call this from the implementation of a Future::poll, if necessary.

Attempt to accept a connection and create a new connected UnixStream if successful.

This function is the same as poll_accept above except that it returns a mio_uds::UnixStream instead of a tokio_udp::UnixStream. This in turn can then allow for the stream to be associated with a different reactor than the one this UnixListener is associated with.

This function will attempt an accept operation, but will not block waiting for it to complete. If the operation would block then a “would block” error is returned. Additionally, if this method would block, it registers the current task to receive a notification when it would otherwise not block.

Note that typically for simple usage it’s easier to treat incoming connections as a Stream of UnixStreams with the incoming method below.

Panics

This function will panic if it is called outside the context of a future’s task. It’s recommended to only call this from the implementation of a Future::poll, if necessary.

Consumes this listener, returning a stream of the sockets this listener accepts.

This method returns an implementation of the Stream trait which resolves to the sockets the are accepted on this listener.

Trait Implementations§

Extracts the raw file descriptor. Read more
Formats the value using the given formatter. 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.