pub trait Continue {
    fn descend(&self) -> bool;
}
Expand description

Trait for visitor functions to control whether or not to descend to child nodes. Implemented for only two types. () always descends. Descend allows controlled descent.

Required Methods

Implementations on Foreign Types

Implementors