pub trait FoldWith<V: ?Sized + Fold> {
// Required methods
fn fold_with(self, v: &mut V) -> Self;
fn fold_children_with(self, v: &mut V) -> Self;
}
Expand description
A utility trait implemented for ast nodes, and allow to visit them with a visitor.
Required Methods§
Sourcefn fold_children_with(self, v: &mut V) -> Self
fn fold_children_with(self, v: &mut V) -> Self
Visit children nodes of self with v
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.