pub enum TraversalResult {
Continue,
SkipChildren,
}
Variants§
Continue
Returned when the visitor should continue tree traversal
SkipChildren
Returned when the visitor should skip the children and exit traversal
Trait Implementations§
Source§impl PartialEq for TraversalResult
impl PartialEq for TraversalResult
impl Eq for TraversalResult
impl StructuralPartialEq for TraversalResult
Auto Trait Implementations§
impl Freeze for TraversalResult
impl RefUnwindSafe for TraversalResult
impl Send for TraversalResult
impl Sync for TraversalResult
impl Unpin for TraversalResult
impl UnwindSafe for TraversalResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more