|  89f4943157 # Objective - Remove `Resource` binding on events, introduce a new `Event` trait - Ensure event iterators are `ExactSizeIterator` ## Solution - Builds on #2382 and #2969 ## Changelog - Events<T>, EventWriter<T>, EventReader<T> and so on now require that the underlying type is Event, rather than Resource. Both of these are trivial supertraits of Send + Sync + 'static with universal blanket implementations: this change is currently purely cosmetic. - Event reader iterators now implement ExactSizeIterator | ||
|---|---|---|
| .. | ||
| app.rs | ||
| ci_testing.rs | ||
| lib.rs | ||
| plugin_group.rs | ||
| plugin.rs | ||
| schedule_runner.rs | ||