pub trait EventLoopWindowTargetExtUnix {
    fn is_wayland(&self) -> bool;
    fn is_x11(&self) -> bool;
    fn xlib_xconnection(&self) -> Option<Arc<XConnection>>;
}
Expand description

Additional methods on EventLoopWindowTarget that are specific to Unix.

Required Methods§

True if the EventLoopWindowTarget uses Wayland.

True if the EventLoopWindowTarget uses X11.

Implementors§