pub trait SortKey {
// Required method
fn sort_key(&self) -> u64;
}Expand description
The core trait of zan-sort.
It maps any arbitrary data type into a strictly ordered, 1-dimensional u64 space.
In this algorithm, the u64 representation is the absolute truth for ordering.