Enum ::std::ops::ControlFlow
Used to tell an operation whether it should exit early or go on as usual.
This acts as the basis of the TRY
protocol in Rune.
Examples
use ControlFlow;
let c = Continue;
assert_eq!;
assert_eq!;
Variants
Move on to the next phase of the operation as normal.
Exit the operation without running subsequent phases.
Protocols
protocol is_variant
Test if the provided argument is a variant.