pub trait FoldWith<V>: Visitablewhere
    V: ?Sized,
{ fn fold_children_with(self, visitor: &mut V) -> Self; fn fold_with(self, visitor: &mut V) -> Self
    where
        V: Fold<Self>
, { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Noop

Noop

Noop

Noop.

Implementors

Noop.