You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While it is true that the inherited traits are correct, it might be worth it to consider explicitly impling or !impl ing Send and Sync for all types in crossbeam, given the finnicky nature of concurrent programming. An example of when implicitness backfired is rust-lang/rust#41622.
Shouldn't
ArcCell
haveimpl {Sync, Send}
?I guess
T
has to beSend
:The text was updated successfully, but these errors were encountered: