pub trait DeepEq<Rhs = Self> {
    fn deep_eq(&self, other: &Rhs) -> bool;

    fn deep_ne(&self, other: &Rhs) -> bool { ... }
}
Expand description

Check if all fields are the same rather than just a subset (“deep equals”)

Required Methods

Provided Methods

Implementors

Check if all fields are the same (PartialEq only checks if email is the same)