bitstring_trees::tree

Trait LeafValueComparer

source
pub trait LeafValueComparer<V> {
    // Required method
    fn eq(a: &V, b: &V) -> bool;
}
Expand description

Define how to compare leaf values in tree

Required Methods§

source

fn eq(a: &V, b: &V) -> bool

Whether two leaf values are equal and can be merged if they are neighbors keys

Object Safety§

This trait is not object safe.

Implementors§