Skip to main content

crisp_errors/
lib.rs

1//! Error pass — ambient propagation, reachable CrispError sets (spec §9).
2
3mod analyze;
4mod display;
5mod error;
6mod result;
7mod set;
8
9pub use analyze::ErrorPass;
10pub use display::{format_crisp_error_enum, format_error_sig, format_errors_crate};
11pub use error::ErrorPassError;
12pub use result::{CrispErrorEnum, CrispErrorVariant, ErrorResult, ErrorSet, ErrorSig};