TypeEq

Trait TypeEq 

Source
pub trait TypeEq {
    type SelfType;
}
Expand description

This trait just says a type is equal to itself, for making assert_type_eq work.

This is automatically implemented on every type.

Required Associated Types§

Source

type SelfType

This is always the type that the trait is implemented on.

Implementors§

Source§

impl<T> TypeEq for T