Enum winit::os::unix::XNotSupported [] [src]

pub enum XNotSupported {
    LibraryOpenError(OpenError),
    XOpenDisplayFailed,
}

Error returned if this system doesn't have XLib or can't create an X connection.

Variants

Failed to load one or several shared libraries.

Connecting to the X server with XOpenDisplay failed.

Trait Implementations

impl Clone for XNotSupported
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for XNotSupported
[src]

[src]

Formats the value using the given formatter. Read more

impl From<OpenError> for XNotSupported
[src]

[src]

Performs the conversion.

impl Error for XNotSupported
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl Display for XNotSupported
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for XNotSupported

impl Sync for XNotSupported