rio-window 0.3.6

Winit fork maintained for Rio terminal
Documentation
#[allow(dead_code)]
fn needs_sync<T: Sync>() {}

#[test]
fn event_loop_proxy_send() {
    #[allow(dead_code)]
    fn is_send<T: 'static + Send + Sync>() {
        // ensures that `rio_window::EventLoopProxy<T: Send>` implements `Sync`
        needs_sync::<rio_window::event_loop::EventLoopProxy<T>>();
    }
}

#[test]
fn window_sync() {
    // ensures that `rio_window::Window` implements `Sync`
    needs_sync::<rio_window::window::Window>();
}

#[test]
fn window_builder_sync() {
    needs_sync::<rio_window::window::WindowAttributes>();
}

#[test]
fn custom_cursor_sync() {
    needs_sync::<rio_window::window::CustomCursorSource>();
    needs_sync::<rio_window::window::CustomCursor>();
}