Enum limn_core::prelude::glutin::os::unix::XNotSupported []

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 Debug for XNotSupported

Formats the value using the given formatter. Read more

impl Display for XNotSupported

Formats the value using the given formatter. Read more

impl From<OpenError> for XNotSupported

Performs the conversion.

impl Clone for XNotSupported

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Error for XNotSupported