(&self)
| 4214 | impl MatchCondition { |
| 4215 | #[allow(clippy::inherent_to_string)] |
| 4216 | pub fn to_string(&self) -> String { |
| 4217 | match self { |
| 4218 | MatchCondition::Text(text) => text.clone(), |
| 4219 | MatchCondition::Integer(int) => int.to_string(), |
| 4220 | MatchCondition::Float(float) => float.to_string(), |
| 4221 | } |
| 4222 | } |
| 4223 | |
| 4224 | pub fn to_i64(&self) -> i64 { |
| 4225 | match self { |
no outgoing calls