pub trait DynEq: Any {
    fn as_any(&self) -> &dyn Any;
fn dyn_eq(&self, other: &dyn DynEq) -> bool; }

Required methods

Implementors