pub trait DynEq { // Required method fn dyn_eq(&self, other: &dyn Any) -> bool; }
Allows comparing dyn-compatible objects, like ExprRef.
ExprRef