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.

Required Methods§

Source

fn dyn_eq(&self, other: &dyn Any) -> bool

Implementors§

Source§

impl<T: Eq + Any> DynEq for T