pub trait WindowBuilderExt {
    // Required methods
    fn with_x11_visual<T>(self, visual_infos: *const T) -> WindowBuilder;
    fn with_x11_screen(self, screen_id: i32) -> WindowBuilder;
}
Expand description

Additional methods on WindowBuilder that are specific to Unix.

Required Methods§

source

fn with_x11_visual<T>(self, visual_infos: *const T) -> WindowBuilder

source

fn with_x11_screen(self, screen_id: i32) -> WindowBuilder

Implementors§