The futures executor is logically single-threaded. But, working with futures is easier if the inner executor machinery is Sync. Can we make the Executor Sync-free (i.e it uses &mut self methods), while staying compatible with the traits in the base superposition library?
The futures executor is logically single-threaded. But, working with futures is easier if the inner executor machinery is Sync. Can we make the Executor Sync-free (i.e it uses
&mut self
methods), while staying compatible with the traits in the base superposition library?