pub trait TypeEq { fn type_eq(&self, other: &Self) -> bool; }
Derive with #[derive(TypeEq)].
#[derive(TypeEq)]
Note: This method should return true for non-type values.
true