1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
//! # Skerry: Super Kool ERRors Yoh
//!
//! Example:
//! ```rust
//! use skerry::*;
//!
//! // 1. Define your error boundary
//! #[error_module]
//! pub mod errors {
//! pub struct DatabaseErr;
//! pub struct AuthErr;
//! pub struct ValidationErr;
//! }
//!
//! // 2. Generate a 'low_level' error enum automatically
//! #[fn_error]
//! fn check_auth() -> Result<(), AuthErr> {
//! Err(CheckAuthError::AuthErr(AuthErr))
//! }
//!
//! // 3. Use '&' to expand and bubble up sub-errors seamlessly
//! #[fn_error]
//! pub fn Controller() -> Result<(), (ValidationErr, &CheckAuthError)> {
//! // ValidationErr is local, AuthErr is pulled in from check_auth via '&'
//! check_auth()?;
//! Ok(())
//! }
//! ```
//!
//! Known Issues:
//! - There's no macro for handling `impl` blocks
//! - Same for `trait` blocks
//!
//! Skerry is a type-safe error management framework designed to kill boilerplate.
//! It allows you to define a global error set while returning granular, function-specific
//! enums that are automatically generated at compile-time.
//!
//! ## Core Workflow
//!
//! 1. **Centralize**: Define all possible error structs in a `#[error_module]`.
//! 2. **Annotate**: Mark functions with `#[fn_error]`.
//! 3. **Compose**: Use the `&` operator to bubble up errors from sub-functions without manually mapping variants.
//!
//! ---
//!
//! ## The Error Module
//! Every project needs one module (usually `errors.rs`) that acts as the source of truth.
//!
//! ```rust,ignore
//! pub use skerry::*; // Required to be pub for macro expansion
//!
//! #[error_module]
//! mod errors {
//! pub struct ErrA;
//! pub struct ErrB;
//! pub struct ErrC;
//! pub struct DatabaseErr;
//! }
//! ```
//! *Note: When using errors in any other file, import them via `crate::errors::*;` instead
//! of individual imports to ensure the macros can resolve the paths correctly.*
//!
//! ---
//!
//! ## Function-Specific Enums
//!
//! By using `#[fn_error]`, you define a return type using a tuple of error structs.
//! Skerry transforms this into a unique enum named `{FunctionName}Error`.
//!
//! ```rust
//! #[fn_error]
//! pub fn low_level() -> Result<(), (ErrA, ErrB)> {
//! // Generates LowLevelError { ErrA(ErrA), ErrB(ErrB) }
//! Err(LowLevelError::ErrA(ErrA)) // You can also type Err(ErrA.into())
//! }
//! ```
//!
//! ---
//!
//! ## The Ampersand (`&`) Expansion
//!
//! The `&` operator is the heart of Skerry. When you put `&OtherFnError` in your return tuple:
//!
//! * **Expansion**: It pulls all variants from `OtherFnError` into your current function's list.
//! * **Promotion**: It allows the `?` operator to work seamlessly for that function's return type.
//! * **Deduplication**: Variants are deduplicated automatically. If `ErrA` is added manually
//! and also exists inside a `&` expansion, only one variant is generated.
//!
//! ```rust,ignore
//! #[fn_error]
//! pub fn high_level() -> Result<(), (ErrC, &LowLevelError)> {
//! // 1. Sees ErrC -> Adds variant
//! // 2. Sees &LowLevelError -> Inspects LowLevelError, finds (ErrA, ErrB)
//! // 3. Final HighLevelError contains variants: ErrA, ErrB, ErrC
//!
//! low_level()?; // Bubbles up automatically
//! Ok(())
//! }
//! ```
//!
//! The syntax below has the exact same effects, `&LowLevelError` is nothing more than syntatic sugar
//!
//! ```rust,ignore
//! #[fn_error]
//! pub fn high_level() -> Result<(), (ErrA, ErrB, ErrC)> {
//! // ...
//! }
//! ```
//!
//! In the cases above the generated enum looks like this
//! ```rust,ignore
//! pub enum HighLevelError {
//! ErrA(ErrA),
//! ErrB(ErrB),
//! ErrC(ErrC),
//! }
//! ```
//!
//! ---
//!
//! ## Compile-Time Safety
//!
//! Skerry uses a custom trait system (`MissingConvert`) to verify error bounds at
//! compile-time. If you try to use `?` on a function whose errors are not represented
//! in your current return tuple, the compiler will refuse to build.
//!
//! ## Naming and Hygiene
//!
//! Skerry uses it's own `Result` enum, replacing the default one this is generated by the
//! `#[error_module]` macro. It may not match all functionalities with Rust's `std::result::Result`.
pub use ;