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

An utility representing a unix socket on which your compositor is listening for new clients

Implementations

Attempt to bind a listening socket with given name

This method will acquire an associate lockfile. The socket will be created in the directory pointed to by the XDG_RUNTIME_DIR environment variable.

Attempt to bind a listening socket from a sequence of names

This method will repeatedly try to bind sockets in teh form {basename}-{n} for values of n yielded from the provided range and returns the first one that succeeds.

This method will acquire an associate lockfile. The socket will be created in the directory pointed to by the XDG_RUNTIME_DIR environment variable.

Attempt to bind a listening socket with given name

The socket will be created at the specified path, and this method will acquire an associatet lockfile alongside it.

Try to accept a new connection to the listening socket

This method will never block, and return Ok(None) if no new connection is available.

Returns the name of the listening socket.

Will only be Some if that socket was created with bind or bind_auto.

Trait Implementations

Returns a file descriptor that may be polled for readiness.

This file descriptor may be polled using apis such as epoll and kqueue to be told when a client has found the socket and is trying to connect.

When the polling system reports the file descriptor is ready, you can use ListeningSocket::accept to get a stream to the new client.

Formats the value using the given formatter. Read more
Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Returns the raw value.
Returns the raw value.
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more
Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more
Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more
Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more
Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. 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.