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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".