pub trait CmpDisplay<C, Lhs: ?Sized, Rhs: ?Sized> {
// Required method
fn fmt(
&self,
cmp: &C,
lhs: &Lhs,
lhs_source: &str,
lhs_debug: &dyn Debug,
rhs: &Rhs,
rhs_source: &str,
rhs_debug: &dyn Debug,
f: &mut Formatter<'_>,
) -> Result;
}