pub struct WindowSettings {
pub title: String,
pub width: i32,
pub height: i32,
pub resizable: bool,
pub borderless: bool,
}
Fields§
§title: String
§width: i32
§height: i32
§resizable: bool
§borderless: bool
Trait Implementations§
Source§impl Debug for WindowSettings
impl Debug for WindowSettings
Auto Trait Implementations§
impl Freeze for WindowSettings
impl RefUnwindSafe for WindowSettings
impl Send for WindowSettings
impl Sync for WindowSettings
impl Unpin for WindowSettings
impl UnwindSafe for WindowSettings
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