From cb159e7905d0e2f36982a527a4e45bcc307b766a Mon Sep 17 00:00:00 2001 From: Rendo Date: Sat, 15 Feb 2025 21:17:16 -0900 Subject: [PATCH] some comments and impl --- src/properties/mod.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/properties/mod.rs b/src/properties/mod.rs index db9601d..a596854 100644 --- a/src/properties/mod.rs +++ b/src/properties/mod.rs @@ -27,6 +27,8 @@ pub enum BaseProperties Parasite } +//Блок основных имплементаций + impl Property for BaseProperties { fn check_condition(self : &Self) -> bool { match self @@ -73,4 +75,15 @@ impl Property for BaseProperties { BaseProperties::Parasite => todo!(), } } +} + +// Блок необходимых имплементаций +unsafe impl Sync for BaseProperties +{ + +} + +unsafe impl Send for BaseProperties +{ + } \ No newline at end of file