pub struct WindowStyle {
pub titled: bool,
pub closable: bool,
pub resizable: bool,
pub miniaturizable: bool,
pub borderless: bool,
}Expand description
Window style options.
Fields§
§titled: bool§closable: bool§resizable: bool§miniaturizable: bool§borderless: boolTrait Implementations§
Source§impl Clone for WindowStyle
impl Clone for WindowStyle
Source§fn clone(&self) -> WindowStyle
fn clone(&self) -> WindowStyle
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WindowStyle
impl Debug for WindowStyle
Auto Trait Implementations§
impl Freeze for WindowStyle
impl RefUnwindSafe for WindowStyle
impl Send for WindowStyle
impl Sync for WindowStyle
impl Unpin for WindowStyle
impl UnwindSafe for WindowStyle
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