pub type Result<T = ()> = ControlFlow<Divert, T>;Expand description
Result of command execution.
If the command was interrupted in the middle of execution, the result value
will be a Break having a Divert value which specifies what to execute
next.
Aliased Type§
pub enum Result<T = ()> {
Continue(T),
Break(Divert),
}