pub struct WindowParams {
pub bounds: Bounds<Pixels>,
pub titlebar: Option<TitlebarOptions>,
pub kind: WindowKind,
pub is_movable: bool,
pub is_resizable: bool,
pub is_minimizable: bool,
pub focus: bool,
pub show: bool,
pub icon: Option<Arc<RgbaImage>>,
pub display_id: Option<DisplayId>,
pub window_min_size: Option<Size<Pixels>>,
}Expand description
The variables that can be configured when creating a new window
Fields§
§bounds: Bounds<Pixels>§titlebar: Option<TitlebarOptions>The titlebar configuration of the window
kind: WindowKindThe kind of window to create
is_movable: boolWhether the window should be movable by the user
is_resizable: boolWhether the window should be resizable by the user
is_minimizable: boolWhether the window should be minimized by the user
focus: bool§show: bool§icon: Option<Arc<RgbaImage>>An image to set as the window icon (x11 only)
display_id: Option<DisplayId>§window_min_size: Option<Size<Pixels>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for WindowParams
impl RefUnwindSafe for WindowParams
impl Send for WindowParams
impl Sync for WindowParams
impl Unpin for WindowParams
impl UnsafeUnpin for WindowParams
impl UnwindSafe for WindowParams
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
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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>
Converts
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>
Converts
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 more