Trait DefaultBehavior

Source
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§

Source

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", so this trait is not object safe.

Implementors§

Source§

impl<F, R> DefaultBehavior<R> for Merge<F>
where F: Fn(R, R) -> R, R: Default,

Source§

impl<R> DefaultBehavior<R> for DefaultValue
where R: Default,