MCPcopy Create free account
hub / github.com/apache/datafusion / eq

Method eq

datafusion/expr/src/async_udf.rs:63–67  ·  view source on GitHub ↗
(&self, other: &Self)

Source from the content-addressed store, hash-verified

61
62impl PartialEq for AsyncScalarUDF {
63 fn eq(&self, other: &Self) -> bool {
64 // Deconstruct to catch any new fields added in future
65 let Self { inner } = self;
66 inner.as_ref().dyn_eq(other.inner.as_ref() as &dyn Any)
67 }
68}
69impl Eq for AsyncScalarUDF {}
70

Callers

nothing calls this directly

Calls 2

dyn_eqMethod · 0.45
as_refMethod · 0.45

Tested by

no test coverage detected