Trait winit::platform::x11::EventLoopBuilderExtX11

source ·
pub trait EventLoopBuilderExtX11 {
    // Required methods
    fn with_x11(&mut self) -> &mut Self;
    fn with_any_thread(&mut self, any_thread: bool) -> &mut Self;
}
Available on x11_platform only.
Expand description

Additional methods on EventLoopBuilder that are specific to X11.

Required Methods§

source

fn with_x11(&mut self) -> &mut Self

Force using X11.

source

fn with_any_thread(&mut self, any_thread: bool) -> &mut Self

Whether to allow the event loop to be created off of the main thread.

By default, the window is only allowed to be created on the main thread, to make platform compatibility easier.

Object Safety§

This trait is not object safe.

Implementors§