wiard 0.8.1

Window handling library for Windows in Rust
Documentation
1
2
3
4
5
6
7
8
9
#[test]
#[should_panic]
fn panic_ui_thread_on_main_loop_start() {
    wiard::UiThread::new()
        .on_main_loop_start(|| {
            panic!();
        })
        .init();
}