Trait winit::os::unix::EventsLoopExt [] [src]

pub trait EventsLoopExt {
    fn new_x11() -> Result<Self, XNotSupported>
    where
        Self: Sized
;
fn new_wayland() -> Self
    where
        Self: Sized
;
fn is_wayland(&self) -> bool;
fn is_x11(&self) -> bool; }

Additional methods on EventsLoop that are specific to Linux.

Required Methods

Builds a new EventsLoop that is forced to use X11.

Builds a new EventsLoop that is forced to use Wayland.

True if the EventsLoop uses Wayland.

True if the EventsLoop uses X11.

Implementors