winit/tests/send_objects.rs
Kirill Chibisov b4c5b76155 winit-core: move window
Create `WindowAttributes` for respective platform specific window
attributes in `winit` due to move of `WindowAttributes`.
2025-05-14 21:18:44 +09:00

30 lines
628 B
Rust

#[allow(dead_code)]
fn needs_send<T: Send + ?Sized>() {}
#[test]
fn event_loop_proxy_send() {
needs_send::<winit::event_loop::EventLoopProxy>();
}
#[test]
fn window_send() {
needs_send::<dyn winit::window::Window>();
}
#[test]
fn window_builder_send() {
needs_send::<winit::window::WindowAttributes>();
}
#[test]
fn ids_send() {
needs_send::<winit::window::WindowId>();
needs_send::<winit::event::DeviceId>();
needs_send::<winit::monitor::MonitorHandle>();
}
#[test]
fn custom_cursor_send() {
needs_send::<winit::cursor::CustomCursorSource>();
needs_send::<winit::cursor::CustomCursor>();
}