pub trait Fold<T: Visitable> {
    fn fold(&mut self, value: T) -> T;
}

Required Methods

Implementations on Foreign Types

Implementors