From: Matt Corallo Date: Wed, 14 Apr 2021 02:58:12 +0000 (-0400) Subject: Impl Send+Sync for every trait, not just those with it explicit X-Git-Tag: v0.0.98~4^2~5 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=d26e7c63d7321a7da2afd2efc52296e19ddd641b;hp=d26e7c63d7321a7da2afd2efc52296e19ddd641b;p=ldk-c-bindings Impl Send+Sync for every trait, not just those with it explicit 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. ---