//! `Exit` — the trace-exit vocabulary: the `R` corner of the verdict family
//! (`Step<Ph, Exit>`, ADR-0029) that a stopped fold rides out on. Moved
//! in-crate when the `behavior-reference` crate was retired; it is the
//! core's own vocabulary now, not a shared one.
use crateAddress;
/// How a fold ends. The `R` parameter of the become verdict (`Step<Ph, Exit>`):
/// a `Stop` carries one of these; the driver also mints `Collected` when the
/// mailbox drains with no self-stop.
/// How the fold crashed. The reason VALUE stays with the driver in both
/// cases (heterogeneous error types and panic payloads are runtime
/// plumbing — typed reasons are the homogeneous-fleet door, deferred);
/// the fold receives the DOMAIN. Both variants classify as abnormal; the
/// distinction is preserved for future policy (e.g. poison-message
/// handling) and for trace truth — the death site knows which one
/// happened, and the report must not collapse it.