We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed28b5c commit 2771803Copy full SHA for 2771803
crates/bevy_reflect/src/impls/std.rs
@@ -1208,6 +1208,14 @@ macro_rules! impl_reflect_for_hashset {
1208
1209
impl_type_path!(::bevy_platform_support::hash::NoOpHash);
1210
impl_type_path!(::bevy_platform_support::hash::FixedHasher);
1211
+impl_reflect_opaque!(::core::net::SocketAddr(
1212
+ Clone,
1213
+ Debug,
1214
+ Hash,
1215
+ PartialEq,
1216
+ Serialize,
1217
+ Deserialize
1218
+));
1219
1220
#[cfg(feature = "std")]
1221
impl_reflect_for_hashset!(::std::collections::HashSet<V,S>);
0 commit comments