forked from 2ndbeam/evolution-rs
4 lines
103 B
Rust
4 lines
103 B
Rust
pub trait Properties {
|
|
fn check_condition<T>(conditions: T) -> bool;
|
|
fn trigger<T>(data: T);
|
|
}
|