(&self, state: &mut H)
| 70 | |
| 71 | impl Hash for AsyncScalarUDF { |
| 72 | fn hash<H: Hasher>(&self, state: &mut H) { |
| 73 | // Deconstruct to catch any new fields added in future |
| 74 | let Self { inner } = self; |
| 75 | inner.dyn_hash(state); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | impl AsyncScalarUDF { |