pub type RaisedUnwind<R, B, C> = Unwind<R, B, C, Raised>;Expand description
Exceptional unwind specialized to the shared raised envelope.
Aliased Type§
pub enum RaisedUnwind<R, B, C> {
Return(R),
Break(B),
Continue(C),
Exception(Raised),
Cancelled,
Closed,
}