From 828f5c0192bed49d68fd01023b05fc2875bf843e Mon Sep 17 00:00:00 2001 From: MattJackson Date: Tue, 28 Jul 2026 12:31:40 -0700 Subject: [PATCH] error: re-export is_halt + is_skippable_title_stub at crate root The engine's multi-title rip loop classifies per-title mux failures (halt vs skippable stub vs hard) using these typed classifiers instead of E-code string matching. Additive; no behavior change. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index c6d5237..e2e24c6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -155,7 +155,7 @@ pub use session::{ // All fallible APIs return `Result`. `Error` is a typed enum with a // numeric `code()`; **no English text in the library** — applications map // codes to localized messages. See `error.rs` for the full taxonomy. -pub use error::{Error, Result}; +pub use error::{Error, Result, is_halt, is_skippable_title_stub}; // ─── Cooperative cancellation ─────────────────────────────────────────────── //