pub trait DynEq {
// Required method
fn dyn_eq(&self, other: &dyn Any) -> bool;
}
Expand description
PhysicalExpr
can’t be constrained by Eq
directly because it must remain object
safe. To ease implementation, blanket implementation is provided for Eq
types.