Deriving DiscriminantHash
implements Hash trait for the underlying enum.
Here hash is only dependent on discriminant and isn’t effected by variant’s fields.
```rust use discriminanthashderive::DiscriminantHash; use std::{ collections::hash_map::DefaultHasher, hash::{Hash, Hasher}, };
enum Abc
enum Pqr<'a> { Simple, Lifetime(&'a str), }
// Xyz doesn't impl Hash struct Xyz;
fn main() {
asserteq!(myhash(Abc::Simple::
assert_ne!(
my_hash(Abc::Simple::<i32>),
my_hash(Abc::Generic::<Xyz>(Xyz))
);
// This may be same depending on how Pqr is defined
// assert_eq!(
// my_hash(Abc::Simple::<i32>),
// my_hash(Pqr::Simple)
// );
}
fn my_hash