Skip to main content

WalkResult

Type Alias WalkResult 

Source
pub type WalkResult = ControlFlow<()>;
Expand description

Result of a visitor callback: continue walking or stop.

Aliased Type§

pub enum WalkResult {
    Continue(()),
    Break(()),
}

Variants§

§1.55.0

Continue(())

Move on to the next phase of the operation as normal.

§1.55.0

Break(())

Exit the operation without running subsequent phases.