(self)
| 227 | |
| 228 | impl DmlEvent { |
| 229 | pub fn as_str(self) -> &'static str { |
| 230 | match self { |
| 231 | Self::Insert => "INSERT", |
| 232 | Self::Update => "UPDATE", |
| 233 | Self::Delete => "DELETE", |
| 234 | } |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | fn matches_event(trigger: &StoredTrigger, event: DmlEvent) -> bool { |
no outgoing calls