pub struct WindowBuilder {
    pub window: WindowAttributes,
    /* private fields */
}
Expand description

Object that allows you to build windows.

Fields

window: WindowAttributes

The attributes to use to create the window.

Implementations

Initializes a new WindowBuilder with default values.

Requests the window to be of specific dimensions.

See Window::set_inner_size for details.

Sets a minimum dimension size for the window.

See Window::set_min_inner_size for details.

Sets a maximum dimension size for the window.

See Window::set_max_inner_size for details.

Sets a desired initial position for the window.

See WindowAttributes::position for details.

Sets whether the window is resizable or not.

See Window::set_resizable for details.

Requests a specific title for the window.

See Window::set_title for details.

Requests a specific menu for the window.

See Window::set_menu for details.

Sets the window fullscreen state.

See Window::set_fullscreen for details.

Requests maximized mode.

See Window::set_maximized for details.

Sets whether the window will be initially hidden or visible.

See Window::set_visible for details.

Sets whether the background of the window should be transparent.

Sets whether the window should have a border, a title bar, etc.

See Window::set_decorations for details.

Sets whether or not the window will always be on top of other windows.

See Window::set_always_on_top for details.

Sets the window icon.

See Window::set_window_icon for details.

Builds the window.

Possible causes of error include denied permission, incompatible system, and lack of memory.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Whether to create the window icon with the taskbar icon or not.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.