pub trait SearchByExtra<A> {
// Required method
fn on_edge(
&mut self,
left_extra: &A,
right_extra: &A,
) -> ControlFlow<(), Branch>;
// Provided method
fn on_leaf(&mut self, leaf_extra: &A) -> bool { ... }
}Expand description
AugDict search control flow.