pub trait TypeEq {
    fn type_eq(&self, other: &Self) -> bool;
}
Expand description

Derive with #[derive(TypeEq)].

Required Methods

Note: This method should return true for non-type values.

Implementations on Foreign Types

Implementors