pub trait IndexingHashBuilder<H: NodeHashs> {
    // Required methods
    fn new<K: ?Sized + Hash, L: ?Sized + Hash>(
        hashs: H,
        k: &K,
        l: &L,
        size: H::Hash
    ) -> Self;
    fn most_discriminating(&self) -> H::Hash;
}

Required Methods§

source

fn new<K: ?Sized + Hash, L: ?Sized + Hash>( hashs: H, k: &K, l: &L, size: H::Hash ) -> Self

source

fn most_discriminating(&self) -> H::Hash

Implementors§