| 33 | |
| 34 | #[derive(Debug, Clone, PartialEq)] |
| 35 | pub struct BinaryCondition { |
| 36 | pub left: String, |
| 37 | pub operator: BinaryConditionOperator, |
| 38 | pub right: Value, |
| 39 | } |
| 40 | |
| 41 | #[derive(Debug, Clone, PartialEq, Eq)] |
| 42 | pub enum LogicalOperator { |
nothing calls this directly
no outgoing calls
no test coverage detected