Enum crater::WalkDecision
source · pub enum WalkDecision {
Continue,
SkipChildren,
Stop,
}
Expand description
Tree traversal control flow, similar to Rust’s builtin std::ops::ControlFlow
enum.
Variants§
Auto Trait Implementations§
impl RefUnwindSafe for WalkDecision
impl Send for WalkDecision
impl Sync for WalkDecision
impl Unpin for WalkDecision
impl UnwindSafe for WalkDecision
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