pub trait EventLoopBuilderExtUnix {
    fn with_x11(&mut self) -> &mut Self;
    fn with_wayland(&mut self) -> &mut Self;
    fn with_any_thread(&mut self, any_thread: bool) -> &mut Self;
}
Expand description

Additional methods on EventLoopBuilder that are specific to Unix.

Required Methods

Force using X11.

Force using Wayland.

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.

Implementors