pub enum RewriteRecursion {
Continue,
Mutate,
Stop,
Skip,
}
Expand description
Controls how the TreeNode recursion should proceed for [rewrite
].
Continue rewrite this node tree.
Call ‘op’ immediately and return.
Do not rewrite the children of this node.
Keep recursive but skip apply op on this node
Formats the value using the given formatter.
Read more
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Calls U::from(self)
.
That is, this conversion is whatever the implementation of
From<T> for U
chooses to do.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.