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 with_inner_size<S: Into<Size>>(self, size: S) -> Self
pub fn with_inner_size<S: Into<Size>>(self, size: S) -> Self
Requests the window to be of specific dimensions.
See Window::set_inner_size for details.
Sourcepub fn with_min_inner_size<S: Into<Size>>(self, min_size: S) -> Self
pub fn with_min_inner_size<S: Into<Size>>(self, min_size: S) -> Self
Sets a minimum dimension size for the window.
See Window::set_min_inner_size for details.
Sourcepub fn with_max_inner_size<S: Into<Size>>(self, max_size: S) -> Self
pub fn with_max_inner_size<S: Into<Size>>(self, max_size: S) -> Self
Sets a maximum dimension size for the window.
See Window::set_max_inner_size for details.
Sourcepub fn with_position<P: Into<Position>>(self, position: P) -> Self
pub fn with_position<P: Into<Position>>(self, position: P) -> Self
Sets a desired initial position for the window.
See WindowAttributes::position for details.
Sourcepub fn with_resizable(self, resizable: bool) -> Self
pub fn with_resizable(self, resizable: bool) -> Self
Sets whether the window is resizable or not.
See Window::set_resizable for details.
Sourcepub fn with_title<T: Into<String>>(self, title: T) -> Self
pub fn with_title<T: Into<String>>(self, title: T) -> Self
Requests a specific title for the window.
See Window::set_title for details.
Sourcepub fn with_fullscreen(self, fullscreen: Option<Fullscreen>) -> Self
pub fn with_fullscreen(self, fullscreen: Option<Fullscreen>) -> Self
Sets the window fullscreen state.
See Window::set_fullscreen for details.
Sourcepub fn with_maximized(self, maximized: bool) -> Self
pub fn with_maximized(self, maximized: bool) -> Self
Requests maximized mode.
See Window::set_maximized for details.
Sourcepub fn with_visible(self, visible: bool) -> Self
pub fn with_visible(self, visible: bool) -> Self
Sets whether the window will be initially hidden or visible.
See Window::set_visible for details.
Sourcepub fn with_transparent(self, transparent: bool) -> Self
pub fn with_transparent(self, transparent: bool) -> Self
Sets whether the background of the window should be transparent.
Sourcepub fn with_decorations(self, decorations: bool) -> Self
pub fn with_decorations(self, decorations: bool) -> Self
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) -> Self
pub fn with_always_on_top(self, always_on_top: bool) -> Self
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>) -> Self
pub fn with_window_icon(self, window_icon: Option<Icon>) -> Self
Sets the window icon.
See Window::set_window_icon for details.
Sourcepub fn build<T: 'static>(
self,
window_target: &EventLoopWindowTarget<T>,
) -> Result<Window, OsError>
pub fn build<T: 'static>( self, window_target: &EventLoopWindowTarget<T>, ) -> Result<Window, OsError>
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 more