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
LibraryOpenError(OpenError)
Failed to load one or several shared libraries.
XOpenDisplayFailed
Connecting to the X server with XOpenDisplay
failed.
Trait Implementations
impl Debug for XNotSupported
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl Display for XNotSupported
fn fmt(&self, formatter: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl From<OpenError> for XNotSupported
fn from(err: OpenError) -> XNotSupported
Performs the conversion.
impl Clone for XNotSupported
fn clone(&self) -> XNotSupported
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more