appit/src
Jonathan Johnson de899cf546
Removed UnwindSafe bounds
After thinking about this more and more, I've come to realize that
forcing UnwindSafe is not the intention of the bound on catch_unwind.
This should have been evident to me by the fact that thread::spawn does
not require UnwindSafe, yet it catches panics. The key qualifier I wasn't
noticing was that the design of the trait is to prevent *easily*
observing invariant states.

Since this panic catch results in dropping and then subsequently closing
everything that was passed to it, it fits the same general shape as
thread::spawn, so I'm removing the bounds.
2023-12-20 11:10:24 -08:00
..
event_loop.rs Initial commit. 2023-06-27 09:21:38 -07:00
lib.rs Fixing compilation on Windows 2023-12-18 17:02:26 -08:00
private.rs Updating winit 2023-11-20 06:20:20 -08:00
window.rs Removed UnwindSafe bounds 2023-12-20 11:10:24 -08:00