bevy_reflect 0.19.0-rc.2

Dynamically interact with rust types
Documentation
1
2
3
4
5
6
7
use bevy_reflect_derive::{impl_reflect_opaque, impl_type_path};

impl_type_path!(::bevy_platform::hash::NoOpHash);
impl_type_path!(::bevy_platform::hash::FixedHasher);
impl_type_path!(::bevy_platform::hash::PassHash);

impl_reflect_opaque!(::bevy_platform::hash::Hashed<T: Clone + Send + Sync, H: Send + Sync>());