pub trait AnyEq: Any + 'static { // Required methods fn equals(&self, other: &dyn Any) -> bool; fn as_any(&self) -> &dyn Any; }