pub trait StableHashEq:
Hash
+ Eq
+ Sealed { }Expand description
Sealed trait for types in std that are known to implement
Hash and Eq deterministically.
Furthermore, if T: Clone + StableHashEq, then T::clone is
deterministic too, in the sense that the behavior with regards
to Hash and Eq methods stays consistent between both clones.
This trait is sealed and cannot be implemented outside of the evmap crate.
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.