[go: up one dir, main page]

winit 0.5.3

Cross-platform window creation library.
Documentation
1
2
3
4
5
6
7
8
9
extern crate winit;

#[cfg(feature = "window")]
#[test]
fn window_proxy_send() {
    // ensures that `winit::WindowProxy` implements `Send`
    fn needs_send<T:Send>() {}
    needs_send::<winit::WindowProxy>();
}