diff options
Diffstat (limited to 'engine-ecs/src/system.rs')
| -rw-r--r-- | engine-ecs/src/system.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engine-ecs/src/system.rs b/engine-ecs/src/system.rs index 5395b14..e0eac57 100644 --- a/engine-ecs/src/system.rs +++ b/engine-ecs/src/system.rs @@ -92,6 +92,7 @@ impl TypeErased /// /// # Safety /// `world_data` must live at least as long as the [`World`] the system belongs to. + #[allow(clippy::missing_errors_doc)] pub unsafe fn run( &self, world: &World, @@ -102,6 +103,7 @@ impl TypeErased (self.run)(world, metadata, evt) } + #[must_use] pub fn name(&self) -> &'static str { self.name @@ -118,6 +120,7 @@ impl Debug for TypeErased pub trait ReturnValue { + #[allow(clippy::missing_errors_doc)] fn into_result(self) -> Result<(), Error>; } |
