pub trait ZHashable: Sized {
    type ZHashKey: Copy;

    fn zhash_key(zbox: ZHashBox<'_, Self>) -> Self::ZHashKey;
    fn zhash_fn(key: Self::ZHashKey, point: &Point<Self>) -> u64;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors