Trait OHash

Source
pub trait OHash:
    Cmov
    + Pod
    + Hash
    + PartialEq { }
Expand description

Utility trait for types that can be uses as keys in the map.

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> OHash for K
where K: Cmov + Pod + Hash + PartialEq,