pub trait FoldWith<V: Fold> {
    fn fold_with(self, v: &mut V) -> Self;
fn fold_children_with(self, v: &mut V) -> Self; }

Required methods

Visit children nodes of self with v

Implementations on Foreign Types

Visit children nodes of self with v

Implementors