very relevant to us: <https://internals.rust-lang....
# development
w
a
Anything in particular? All our futures are `Send`…
w
because they have to be
a
I don’t think we have any that we wish weren’t…
w
i have not yet read the question (300 email to go!)
being !Send would mean you don't need synchronization
a
That would be being !Sync
w
which is cheaper in theory?
hmmm yes, true.
k, i will read it when i get closer to the bottom of my inbox
(Sync implies Send, but not vice-versa i guess? they're tangled up)
a
Send == “can be passed between threads” Sync == “multiple threads can access concurrently” So yeah, Sync implies Send, but Send doesn’t imply Sync 🙂