pub enum RewriteRecursion {
Continue,
Mutate,
Stop,
Skip,
}
Expand description
Controls how the ExprRewriter recursion should proceed.
Variants§
Continue
Continue rewrite / visit this expression.
Mutate
Call ExprRewriter::mutate() immediately and return.
Stop
Do not rewrite / visit the children of this expression.
Skip
Keep recursive but skip mutate on this expression