pub struct WindowProperties {
pub name: String,
pub dimensions: (u32, u32),
pub monitor_handle: MonitorHandle,
}Expand description
Structure that contains properties needed for building a window.
Fields§
§name: String§dimensions: (u32, u32)§monitor_handle: MonitorHandleAuto 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