pub trait Item: Eq + Hash { }
Expand description

An alias of the traits that T must implement for Chain<T>.

There is no need to implement this trait manually; it has a blanket implementation.

If the hash feature is disabled, this trait will be an alias of Ord instead of Eq + Hash.

Implementors§