Trait radn::flow::binary::BinaryTrees
source · pub trait BinaryTrees: Keyed {
type Node: Send;
type Reference: Send;
type Tree: Send;
// Required methods
fn split(&self, node: &Self::Node) -> Split<Self>;
fn equal(&self, rl: &Self::Reference, rr: &Self::Reference) -> bool;
fn refer(&self, tree: &Self::Tree) -> Option<Self::Reference>;
}