Struct ul_next::window::WindowFlags
source · pub struct WindowFlags {
pub borderless: bool,
pub titled: bool,
pub resizable: bool,
pub maximizable: bool,
pub hidden: bool,
}Expand description
Window creation flags
Fields§
§borderless: boolWhether the window has borders or not
titled: boolWhether the window has title or not
resizable: boolWhether the window is resizable or not
maximizable: boolWhether the window is maximizable or not
The initial hide/show state of the window
Auto Trait Implementations§
impl RefUnwindSafe for WindowFlags
impl Send for WindowFlags
impl Sync for WindowFlags
impl Unpin for WindowFlags
impl UnwindSafe for WindowFlags
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