pub struct WindowProperties {
pub title: Option<String>,
pub position: Option<Vec2>,
pub size: Option<Vec2>,
pub draggable: bool,
pub resizable: bool,
pub closable: bool,
}Fields§
§title: Option<String>§position: Option<Vec2>§size: Option<Vec2>§draggable: bool§resizable: bool§closable: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for WindowProperties
impl RefUnwindSafe for WindowProperties
impl Send for WindowProperties
impl Sync for WindowProperties
impl Unpin for WindowProperties
impl UnwindSafe for WindowProperties
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