reactive_graph_behaviour_model_impl/entity/
gate.rs

1use serde_json::Value;
2
3use crate::entity::Operation;
4
5pub trait Gate: Operation {
6    fn rhs(&self, value: Value);
7}