Currently, the compiler requires `T` to also be `Send`. There is no reason for
that. `&Rw{Read,Write}LockGuard` only provides a shared referenced to `T`, sending
that across threads is safe if `T` is `Sync`.
|
||
|---|---|---|
| .. | ||
| mpsc | ||
| barrier.rs | ||
| condvar.rs | ||
| mod.rs | ||
| mutex.rs | ||
| once.rs | ||
| rwlock.rs | ||