pub enum InitMode {
Default,
Minimized,
Maximized,
Fullscreen,
}
Expand description
Initial mode
Variants§
Default
A regular window with a specified frame size.
Minimized
The window will be displayed in minimized mode.
Maximized
The window will be displayed in maximized mode.
Fullscreen
The window will be displayed in fullscreen mode.
Trait Implementations§
impl Copy for InitMode
impl Eq for InitMode
impl StructuralPartialEq for InitMode
Auto Trait Implementations§
impl Freeze for InitMode
impl RefUnwindSafe for InitMode
impl Send for InitMode
impl Sync for InitMode
impl Unpin for InitMode
impl UnwindSafe for InitMode
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