* macOS/iOS: Fix auto trait impls of `EventLoopProxy` `EventLoopProxy<T>` allows sending `T` from an arbitrary thread that owns the proxy object. Thus, if `T` is `!Send`, `EventLoopProxy<T>` must not be allowed to leave the main thread. `EventLoopProxy<T>` uses `std::sync::mpsc::Sender` under the hood, meaning the `!Sync` restriction of it also applies to `EventLoopProxy<T>`. That is, even if `T` is thread-safe, a single `EventLoopProxy` object cannot be shared between threads. * Update `CHANGELOG.md` |
||
|---|---|---|
| .. | ||
| platform | ||
| platform_impl | ||
| dpi.rs | ||
| error.rs | ||
| event.rs | ||
| event_loop.rs | ||
| icon.rs | ||
| lib.rs | ||
| monitor.rs | ||
| window.rs | ||