some comments and impl
This commit is contained in:
parent
ba9be4e17b
commit
cb159e7905
1 changed files with 13 additions and 0 deletions
|
|
@ -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
|
||||
{
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue