diff options
author | HampusM <hampus@hampusmat.com> | 2025-04-04 11:41:40 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-04-04 11:41:54 +0200 |
commit | ad2877956935375d74d0a0255dcf207c1673801c (patch) | |
tree | 075611a7293b1439142e9aa1d8f77207c3a64553 /ecs/src/component.rs | |
parent | efa8f9af3a3c16c0ecbfefd479d69fc431ede834 (diff) |
refactor(ecs): remove Component trait fns as_any & as_any_mut
Instead of these functions, it makes use of the trait object upcasting added in Rust 1.86
Diffstat (limited to 'ecs/src/component.rs')
-rw-r--r-- | ecs/src/component.rs | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/ecs/src/component.rs b/ecs/src/component.rs index 46fbf8a..525bd98 100644 --- a/ecs/src/component.rs +++ b/ecs/src/component.rs @@ -50,12 +50,6 @@ pub trait Component: SystemInput + Any + TypeName /// Returns the component UID of a component event for this component. fn get_event_uid(&self, event_kind: ComponentEventKind) -> Uid; - #[doc(hidden)] - fn as_any_mut(&mut self) -> &mut dyn Any; - - #[doc(hidden)] - fn as_any(&self) -> &dyn Any; - /// Returns whether the component `self` is optional. fn self_is_optional(&self) -> bool { @@ -76,17 +70,17 @@ impl dyn Component { pub fn downcast_mut<Real: 'static>(&mut self) -> Option<&mut Real> { - self.as_any_mut().downcast_mut() + (self as &mut dyn Any).downcast_mut() } pub fn downcast_ref<Real: 'static>(&self) -> Option<&Real> { - self.as_any().downcast_ref() + (self as &dyn Any).downcast_ref() } pub fn is<Other: 'static>(&self) -> bool { - self.as_any().is::<Other>() + (self as &dyn Any).is::<Other>() } } @@ -128,16 +122,6 @@ where } } - fn as_any_mut(&mut self) -> &mut dyn Any - { - self - } - - fn as_any(&self) -> &dyn Any - { - self - } - fn self_is_optional(&self) -> bool { true |