pub type MachineUnwind<R, A, I> = Unwind<R, (), (), MachineAbrupt<A, I>>;Expand description
Control-organ reason delivered exactly once to registered machine cleanups.
Aliased Type§
pub enum MachineUnwind<R, A, I> {
Return(R),
Break(()),
Continue(()),
Exception(MachineAbrupt<A, I>),
Cancelled,
Closed,
}