pub type HashUnionFind<T> = UnionFind<T, (), HashMap<T, T>, ()>;
pub struct HashUnionFind<T> { /* private fields */ }