Impl Send+Sync for every trait, not just those with it explicit
authorMatt Corallo <git@bluematt.me>
Wed, 14 Apr 2021 02:58:12 +0000 (22:58 -0400)
committerMatt Corallo <git@bluematt.me>
Wed, 2 Jun 2021 16:25:20 +0000 (16:25 +0000)
Because Send+Sync are generated by the compiler for us, we don't
really know when we should or should not generate it. That said,
Send+Sync aren't exposed outside of Rust, so it only impacts
whether we can use a type when passed to Rust, not how users will
ultimately interact with types.


No differences found