Action

Type Alias Action 

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

What to do after a Change was recorded.

Use std::ops::ControlFlow::Continue to continue the traversal of changes. Use std::ops::ControlFlow::Break to stop the traversal of changes, making this the last call to visit(…).

Aliased Type§

pub enum Action {
    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.