Struct wry::application::window::WindowBuilder
source · [−]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
sourceimpl 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 where
S: Into<Size>,
pub fn with_inner_size<S>(self, size: S) -> WindowBuilder where
S: Into<Size>,
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 where
S: Into<Size>,
pub fn with_min_inner_size<S>(self, min_size: S) -> WindowBuilder where
S: Into<Size>,
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 where
S: Into<Size>,
pub fn with_max_inner_size<S>(self, max_size: S) -> WindowBuilder where
S: Into<Size>,
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 where
P: Into<Position>,
pub fn with_position<P>(self, position: P) -> WindowBuilder where
P: Into<Position>,
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 where
T: Into<String>,
pub fn with_title<T>(self, title: T) -> WindowBuilder where
T: Into<String>,
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.
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.
Trait Implementations
sourceimpl Clone for WindowBuilder
impl Clone for WindowBuilder
sourcepub fn clone(&self) -> WindowBuilder
pub fn clone(&self) -> WindowBuilder
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for WindowBuilder
impl Debug for WindowBuilder
sourceimpl Default for WindowBuilder
impl Default for WindowBuilder
sourcepub fn default() -> WindowBuilder
pub fn default() -> WindowBuilder
Returns the “default value” for a type. Read more
sourceimpl WindowBuilderExtUnix for WindowBuilder
impl WindowBuilderExtUnix for WindowBuilder
sourcepub fn with_skip_taskbar(self, skip: bool) -> WindowBuilder
pub fn with_skip_taskbar(self, skip: bool) -> WindowBuilder
Whether to create the window icon with the taskbar icon or not.
Auto Trait Implementations
impl RefUnwindSafe for WindowBuilder
impl Send for WindowBuilder
impl Sync for WindowBuilder
impl Unpin for WindowBuilder
impl UnwindSafe for WindowBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more