pub trait MaybeHash: Hash { }
Expand description

Type which implements Hash in std, not when no-std (std variant).

Object Safety§

This trait is not object safe.

Implementors§

§

impl<T> MaybeHash for T
where T: Hash,