HashKind

Trait HashKind 

Source
pub trait HashKind:
    Kind
    + Debug
    + Hash
    + Eq
    + PartialEq
    + 'static
    + Copy
where Self: Send + Sync,
{ }

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<K> HashKind for K
where K: Kind + Debug + Hash + Eq + PartialEq + Send + Sync + 'static + Copy,