Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…evyengine#7718) # Objective The type `SyncCell<T>` (added in bevyengine#5483) is used to force any wrapped type to be `Sync`, by only allowing exclusive access to the wrapped value. This restriction is unnecessary for types which are already `Sync`. --- ## Changelog + Added the method `read` to `SyncCell`, which allows shared access to values that already implement the `Sync` trait.
- Loading branch information