Trait EventLoopExtX11

Source
pub trait EventLoopExtX11 {
    // Required method
    fn is_x11(&self) -> bool;
}
Available on x11_platform only.
Expand description

Additional methods on EventLoop that are specific to X11.

Required Methods§

Source

fn is_x11(&self) -> bool

True if the EventLoop uses X11.

Implementors§

Source§

impl<T: 'static> EventLoopExtX11 for EventLoop<T>