pub struct WindowBuilderWrapper { /* private fields */ }

Trait Implementations§

source§

impl Clone for WindowBuilderWrapper

source§

fn clone(&self) -> WindowBuilderWrapper

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for WindowBuilderWrapper

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for WindowBuilderWrapper

source§

fn default() -> WindowBuilderWrapper

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

impl WindowBuilder for WindowBuilderWrapper

source§

fn focus(self) -> Self

Deprecated since 0.1.4 (noop) Windows is automatically focused when created.

source§

fn new() -> Self

Initializes a new window attributes builder.
source§

fn with_config(config: WindowConfig) -> Self

Initializes a new webview builder from a WindowConfig
source§

fn menu(self, menu: Menu) -> Self

Sets the menu for the window.
source§

fn center(self) -> Self

Show window in the center of the screen.
source§

fn position(self, x: f64, y: f64) -> Self

The initial position of the window’s.
source§

fn inner_size(self, width: f64, height: f64) -> Self

Window size.
source§

fn min_inner_size(self, min_width: f64, min_height: f64) -> Self

Window min inner size.
source§

fn max_inner_size(self, max_width: f64, max_height: f64) -> Self

Window max inner size.
source§

fn resizable(self, resizable: bool) -> Self

Whether the window is resizable or not.
source§

fn title<S: Into<String>>(self, title: S) -> Self

The title of the window in the title bar.
source§

fn fullscreen(self, fullscreen: bool) -> Self

Whether to start the window in fullscreen or not.
source§

fn maximized(self, maximized: bool) -> Self

Whether the window should be maximized upon creation.
source§

fn visible(self, visible: bool) -> Self

Whether the window should be immediately visible upon creation.
source§

fn decorations(self, decorations: bool) -> Self

Whether the window should have borders and bars.
source§

fn always_on_top(self, always_on_top: bool) -> Self

Whether the window should always be on top of other windows.
source§

fn parent_window(self, parent: *mut c_void) -> Self

Sets a parent to the window to be created. Read more
source§

fn icon(self, icon: Icon) -> Result<Self>

Sets the window icon.
source§

fn skip_taskbar(self, _skip: bool) -> Self

Sets whether or not the window icon should be added to the taskbar.
source§

fn theme(self, theme: Option<Theme>) -> Self

Forces a theme or uses the system settings if None was provided.
source§

fn has_icon(&self) -> bool

Whether the icon was set or not.
source§

fn get_menu(&self) -> Option<&Menu>

Gets the window menu.
source§

impl Send for WindowBuilderWrapper

source§

impl WindowBuilderBase for WindowBuilderWrapper

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> UserEvent for Twhere T: Debug + Clone + Send + 'static,