(&mut self)
| 52 | struct StopGlutinWhenDropped; |
| 53 | impl Drop for StopGlutinWhenDropped { |
| 54 | fn drop(&mut self) { |
| 55 | glutin_thread().send_event(GlutinThreadEvent::StopWhenAllWindowsClosed); |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | /// |
nothing calls this directly
no test coverage detected