Trait DynEq

Source
pub trait DynEq: DynPartialEq { }
Expand description

A dynamic-dispatch version of the Eq trait. Implemented for every type that implements Any + Eq.

Implementors§

Source§

impl<T: Any + Eq> DynEq for T