pub struct WindowBuilder {
pub window: WindowAttributes,
/* private fields */
}Expand description
Object that allows you to build windows.
Fields§
§window: WindowAttributesThe attributes to use to create the window.
Implementations§
Source§impl WindowBuilder
impl WindowBuilder
Sourcepub fn new() -> WindowBuilder
pub fn new() -> WindowBuilder
Initializes a new WindowBuilder with default values.
Sourcepub fn with_inner_size<S>(self, size: S) -> WindowBuilder
pub fn with_inner_size<S>(self, size: S) -> WindowBuilder
Requests the window to be of specific dimensions.
See Window::set_inner_size for details.
Sourcepub fn with_min_inner_size<S>(self, min_size: S) -> WindowBuilder
pub fn with_min_inner_size<S>(self, min_size: S) -> WindowBuilder
Sets a minimum dimension size for the window.
See Window::set_min_inner_size for details.
Sourcepub fn with_max_inner_size<S>(self, max_size: S) -> WindowBuilder
pub fn with_max_inner_size<S>(self, max_size: S) -> WindowBuilder
Sets a maximum dimension size for the window.
See Window::set_max_inner_size for details.
Sourcepub fn with_position<P>(self, position: P) -> WindowBuilder
pub fn with_position<P>(self, position: P) -> WindowBuilder
Sets a desired initial position for the window.
See WindowAttributes::position for details.
Sourcepub fn with_resizable(self, resizable: bool) -> WindowBuilder
pub fn with_resizable(self, resizable: bool) -> WindowBuilder
Sets whether the window is resizable or not.
See Window::set_resizable for details.
Sourcepub fn with_title<T>(self, title: T) -> WindowBuilder
pub fn with_title<T>(self, title: T) -> WindowBuilder
Requests a specific title for the window.
See Window::set_title for details.
Sourcepub fn with_fullscreen(self, fullscreen: Option<Fullscreen>) -> WindowBuilder
pub fn with_fullscreen(self, fullscreen: Option<Fullscreen>) -> WindowBuilder
Sets the window fullscreen state.
See Window::set_fullscreen for details.
Sourcepub fn with_maximized(self, maximized: bool) -> WindowBuilder
pub fn with_maximized(self, maximized: bool) -> WindowBuilder
Requests maximized mode.
See Window::set_maximized for details.
Sourcepub fn with_visible(self, visible: bool) -> WindowBuilder
pub fn with_visible(self, visible: bool) -> WindowBuilder
Sets whether the window will be initially hidden or visible.
See Window::set_visible for details.
Sourcepub fn with_transparent(self, transparent: bool) -> WindowBuilder
pub fn with_transparent(self, transparent: bool) -> WindowBuilder
Sets whether the background of the window should be transparent.
Sourcepub fn with_decorations(self, decorations: bool) -> WindowBuilder
pub fn with_decorations(self, decorations: bool) -> WindowBuilder
Sets whether the window should have a border, a title bar, etc.
See Window::set_decorations for details.
Sourcepub fn with_always_on_top(self, always_on_top: bool) -> WindowBuilder
pub fn with_always_on_top(self, always_on_top: bool) -> WindowBuilder
Sets whether or not the window will always be on top of other windows.
See Window::set_always_on_top for details.
Sourcepub fn with_window_icon(self, window_icon: Option<Icon>) -> WindowBuilder
pub fn with_window_icon(self, window_icon: Option<Icon>) -> WindowBuilder
Sets the window icon.
See Window::set_window_icon for details.
Sourcepub fn build<T>(
self,
window_target: &EventLoopWindowTarget<T>,
) -> Result<Window, OsError>where
T: 'static,
pub fn build<T>(
self,
window_target: &EventLoopWindowTarget<T>,
) -> Result<Window, OsError>where
T: 'static,
Builds the window.
Possible causes of error include denied permission, incompatible system, and lack of memory.
Platform-specific behavior:
- Web: The window is created but not inserted into the web page automatically. Please see the web platform module for more information.
Trait Implementations§
Source§impl Clone for WindowBuilder
impl Clone for WindowBuilder
Source§fn clone(&self) -> WindowBuilder
fn clone(&self) -> WindowBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for WindowBuilder
impl Debug for WindowBuilder
Source§impl Default for WindowBuilder
impl Default for WindowBuilder
Source§fn default() -> WindowBuilder
fn default() -> WindowBuilder
Source§impl WindowBuilderExtUnix for WindowBuilder
impl WindowBuilderExtUnix for WindowBuilder
fn with_x11_visual<T>(self, visual_infos: *const T) -> WindowBuilder
fn with_x11_screen(self, screen_id: i32) -> WindowBuilder
Source§fn with_class(self, instance: String, class: String) -> WindowBuilder
fn with_class(self, instance: String, class: String) -> WindowBuilder
WM_CLASS hint; defaults to the name of the binary. Only relevant on X11.Source§fn with_override_redirect(self, override_redirect: bool) -> WindowBuilder
fn with_override_redirect(self, override_redirect: bool) -> WindowBuilder
Source§fn with_x11_window_type(
self,
x11_window_types: Vec<WindowType>,
) -> WindowBuilder
fn with_x11_window_type( self, x11_window_types: Vec<WindowType>, ) -> WindowBuilder
_NET_WM_WINDOW_TYPE hints; defaults to Normal. Only relevant on X11.Source§fn with_gtk_theme_variant(self, variant: String) -> WindowBuilder
fn with_gtk_theme_variant(self, variant: String) -> WindowBuilder
_GTK_THEME_VARIANT hint set to the specified value. Currently only relevant on X11.Source§fn with_resize_increments<S>(self, increments: S) -> WindowBuilder
fn with_resize_increments<S>(self, increments: S) -> WindowBuilder
Source§fn with_base_size<S>(self, base_size: S) -> WindowBuilder
fn with_base_size<S>(self, base_size: S) -> WindowBuilder
Source§fn with_app_id(self, app_id: String) -> WindowBuilder
fn with_app_id(self, app_id: String) -> WindowBuilder
.desktop file distributed with
your program. Only relevant on Wayland. Read moreAuto Trait Implementations§
impl Freeze for WindowBuilder
impl !RefUnwindSafe for WindowBuilder
impl !Send for WindowBuilder
impl !Sync for WindowBuilder
impl Unpin for WindowBuilder
impl !UnwindSafe for WindowBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Initialize for Twhere
T: Default,
impl<T> Initialize for Twhere
T: Default,
fn initialize() -> T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian().