pub trait DefaultBehavior<R> {
// Required method
fn apply(&self, results: impl IntoIterator<Item = R>) -> R;
}
Expand description
The behavior for the default implementations of visit_xxx
.
Required Methods§
sourcefn apply(&self, results: impl IntoIterator<Item = R>) -> R
fn apply(&self, results: impl IntoIterator<Item = R>) -> R
Apply this behavior to the plan node with the given results.
Object Safety§
This trait is not object safe.