mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-03 17:35:28 +03:00
e5b82de04c
Implement `Send` and `Sync` for `ThinBox<T>` Just like `Box<T>`, `ThinBox<T>` owns its data on the heap, so it should implement `Send` and `Sync` when `T` does. This extends tracking issue #92791.