pub struct SCWindow {
pub title: String,
pub ogl_version: (u32, u32),
pub dimensions: [u32; 2],
pub window: Window,
pub glfw: Glfw,
pub events: Receiver<(f64, WindowEvent)>,
}Fields§
§title: String§ogl_version: (u32, u32)§dimensions: [u32; 2]§window: Window§glfw: Glfw§events: Receiver<(f64, WindowEvent)>Implementations§
Auto Trait Implementations§
impl Freeze for SCWindow
impl RefUnwindSafe for SCWindow
impl !Send for SCWindow
impl !Sync for SCWindow
impl Unpin for SCWindow
impl UnsafeUnpin for SCWindow
impl UnwindSafe for SCWindow
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