macro_rules! handle_visit_recursion {
    (@handle_jump UP) => { ... };
    (@handle_jump DOWN) => { ... };
    (@handle_jump) => { ... };
    ($EXPR:expr $(, $DIRECTION:ident)?) => { ... };
}
Expand description

This macro is used to control continuation behaviors during tree traversals based on the specified direction. Depending on $DIRECTION and the value of the given expression ($EXPR), which should be a variant of TreeNodeRecursion, the macro results in the following behavior: