Enum wayland_client::ConnectError[][src]

pub enum ConnectError {
    NoWaylandLib,
    NoCompositorListening,
    InvalidName,
}

Enum representing the possible reasons why connecting to the wayland server failed

Variants

The library was compiled with the dlopen feature, and the libwayland-client.so library could not be found at runtime

Any needed library was found, but the listening socket of the server could not be found.

Most of the time, this means that the program was not started from a wayland session.

The provided socket name is invalid

Trait Implementations

impl Debug for ConnectError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ConnectError

impl Sync for ConnectError