Reflect is broken on hashbrown::HashMap<K, V, FixedHasher>
#18943
Labels
A-Reflection
Runtime information about types
C-Bug
An unexpected or incorrect behavior
P-Regression
Functionality that used to work but no longer does. Add a test for this!
S-Ready-For-Implementation
This issue is ready for an implementation PR. Go for it!
Milestone
Bevy version
0.16.0
I have
#[derive(Reflect)]
on a type containinghashbrown::HashMap<K, V, FixedHasher>
where K and V are both Reflect. This gives me some compile error saying that the type is not reflectable.If I switch to
bevy::platform::collections::HashMap<K, V>
instead, the error disappears.The text was updated successfully, but these errors were encountered: