pub trait Visitor {
type Break;
}Expand description
A visitor.
This trait provides the Break type used by its two child traits Visit and VisitMut. All
visitors can abort visitation early by returning ControlFlow::Break. For the common case of
visitors that never return early, use std::convert::Infallible. This is the default type used
by derive(Visitor).