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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
//! # Skerry: Super Kool ERRors Yoh
//!
//! Example:
//! ```rust
//! use skerry::*;
//!
//! // There can be only one #[sherry_mod] in your project
//! # struct ErrorFromLib;
//! #[skerry_mod]
//! pub mod errors {
//! pub struct DatabaseError;
//! pub struct AuthError;
//! pub struct ValidationError;
//!
//! pub struct InvalidParse;
//!
//! #[from]
//! pub struct LibError(ErrorFromLib);
//! }
//!
//! // Generates a CheckAuthError enum automatically
//! #[skerry_fn]
//! fn check_auth() -> Result<(), e![AuthError]> {
//! Err(CheckAuthError::AuthError(AuthError))
//! }
//!
//! # fn lib_fn_that_returns_error() -> Result<(), ErrorFromLib> {
//! # Err(ErrorFromLib)
//! # }
//!
//! struct Controller;
//!
//! #[skerry_impl(prefix(Controller))] // This allows #[skerry_fn] to run on impl blocks
//! impl Controller {
//! // Use '*' to expand and bubble up sub-errors seamlessly.
//! #[skerry_fn]
//! pub fn run() -> Result<(), e![LibError, *CheckAuthError]> {
//! // AuthError is pulled in from check_auth via '*CheckAuthError'
//! check_auth()?;
//!
//! // Automatically bubble up library errors as long as an
//! // error from `#[skerry_mod]` implements `From` for it.
//! lib_fn_that_returns_error()?;
//!
//! Ok(())
//! }
//! }
//! #[skerry_trait]
//! trait ToJson {
//! #[skerry_fn]
//! fn to_json(&self) -> Result<(), e![InvalidParse]>;
//! }
//!
//! #[skerry_impl]
//! impl ToJson for Controller {
//! // Whenever you do not want to generate a new error just don't
//! // use e![], this will instead reuse an existing error
//! #[skerry_fn]
//! fn to_json(&self) -> Result<(), ToJsonError> {
//! Ok(())
//! }
//! }
//!
//! // Manually define composite errors like this
//! define_error!(ManualDefine, [ValidationError, *ToJsonError]);
//! ```
//!
//! ## Core Workflow
//!
//! - Define all possible error structs in a `#[skerry_mod]`.
//! - Mark functions with `#[skerry_fn]`.
//! - 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
//! // Recommended to be pub for easier macro expansions
//! pub use skerry::*;
//! # struct LibError;
//!
//! #[skerry_mod]
//! mod errors {
//! pub struct ErrA;
//! pub struct ErrB;
//! pub struct ErrC;
//! pub struct DatabaseErr;
//! #[from]
//! pub struct OuterLibError(LibError);
//! }
//! ```
//!
//! You can also anotate with `#[from]` to automatically add conversions from the inner type.
//! This is only valid for tuple structs with a single element.
//!
//! *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 `#[skerry_fn]`, you define a return type using a tuple of error structs.
//! Skerry transforms this into a unique enum named `{FunctionName}Error`.
//!
//! ```rust
//! # pub use skerry::*;
//! # #[skerry_mod]
//! # mod errors {
//! # pub struct ErrA;
//! # pub struct ErrB;
//! # pub struct ErrC;
//! # pub struct DatabaseErr;
//! # }
//! #[skerry_fn]
//! pub fn low_level() -> Result<(), e![ErrA, ErrB]> {
//! // Generates LowLevelError { ErrA(ErrA), ErrB(ErrB) }
//! Err(LowLevelError::ErrA(ErrA))
//! // You can also type Err(ErrA.into())
//! }
//! ```
//!
//! ---
//!
//! ## The Asterisk (`*`) Expansion
//!
//! When you put `*OtherFnError` in your return array it pulls all
//! variants from `OtherFnError` into your current function's list.
//!
//! * **Deduplication**: Variants are deduplicated automatically. If `ErrA` is added manually
//! and also exists inside a `*` expansion, only one variant is generated.
//!
//! ```rust
//! # pub use skerry::*;
//! # #[skerry_mod]
//! # mod errors {
//! # pub struct ErrA;
//! # pub struct ErrB;
//! # pub struct ErrC;
//! # pub struct DatabaseErr;
//! # }
//! # #[skerry_fn]
//! # pub fn low_level() -> Result<(), e![ErrA, ErrB]> {
//! # // Generates LowLevelError { ErrA(ErrA), ErrB(ErrB) }
//! # Err(LowLevelError::ErrA(ErrA)) // You can also type Err(ErrA.into())
//! # }
//! #[skerry_fn]
//! pub fn high_level() -> Result<(), e![ErrC, *LowLevelError]> {
//! // Sees ErrC -> Adds variant
//! // Sees *LowLevelError -> Inspects LowLevelError, finds (ErrA, ErrB)
//! // 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
//! # pub use skerry::*;
//! # #[skerry_mod]
//! # mod errors {
//! # pub struct ErrA;
//! # pub struct ErrB;
//! # pub struct ErrC;
//! # pub struct DatabaseErr;
//! # }
//! # #[skerry_fn]
//! # pub fn low_level() -> Result<(), e![ErrA, ErrB]> {
//! # // Generates LowLevelError { ErrA(ErrA), ErrB(ErrB) }
//! # Err(LowLevelError::ErrA(ErrA)) // You can also type Err(ErrA.into())
//! # }
//! #[skerry_fn]
//! pub fn high_level() -> Result<(), e![ErrA, ErrB, ErrC]> {
//! // ...
//! # Ok(())
//! }
//! ```
//!
//! In the cases above the generated enum looks like this
//! ```rust
//! # struct ErrA;
//! # struct ErrB;
//! # struct ErrC;
//! pub enum HighLevelError {
//! ErrA(ErrA),
//! ErrB(ErrB),
//! ErrC(ErrC),
//! }
//! ```
//! ## Using Skerry inside Impl Blocks
//!
//! Skerry provides the `#[skerry_impl]` attribute to handle methods within `impl` blocks.
//! This attribute coordinates with `#[skerry_fn]` to split the generated code
//! so error enums are generated outside the `impl` block.
//!
//! ### Example
//!
//! ```rust
//! # use skerry::*;
//! # #[skerry_mod]
//! # mod errors {
//! # pub struct ConnectionFailed;
//! # }
//! # #[skerry_fn]
//! # pub fn remote_call() -> Result<(), e![ConnectionFailed]> {
//! # Ok(())
//! # }
//! pub struct Database;
//!
//! #[skerry_impl(prefix(Database))] // Optional prefix for functions inside impl block
//! impl Database {
//! #[skerry_fn]
//! pub fn connect(&self) -> Result<(), e![*RemoteCallError]> {
//! remote_call()?;
//! Ok(())
//! }
//! }
//!
//! fn main() {
//! let db = Database;
//! let result: Result<(), DatabaseConnectError> = db.connect();
//! assert!(result.is_ok());
//! }
//! ```
//! ## Using Skerry inside Trait Blocks
//!
//! Skerry provides the `#[skerry_trait]` attribute to handle methods within `trait` blocks.
//! This attribute coordinates with `#[skerry_fn]` to split the generated code
//! so error enums are generated outside the `trait` block.
//!
//! ### Example
//!
//! ```rust
//! # use skerry::*;
//! # #[skerry_mod]
//! # mod errors {
//! # pub struct ParseFailed;
//! # }
//! #[skerry_trait(prefix(ToJson))] // Optional prefix for functions inside trait block
//! trait ToJson {
//! #[skerry_fn]
//! fn parse(&self) -> Result<(), e![ParseFailed]>;
//! }
//! ```
//! # Manual Error Definitions
//!
//! Manually define composite errors using the `define_error!` macro.
//! This allows you to skip needing a function to define errors.
//!
//! ### Example
//! ```rust
//! # use skerry::*;
//! # #[skerry_mod]
//! # mod errors {
//! # pub struct ErrorA;
//! # pub struct ErrorB;
//! # }
//! define_error!(ManualDefine, [ErrorA, ErrorB]);
//!
//! #[skerry_fn]
//! fn my_func_with_custom_error() -> Result<(), ManualDefine> {
//! Ok(())
//! }
//! ```
//! # Custom Result Feature
//!
//! The `custom_result` feature implements a specialized result type and leverages the
//! unstable features to enable even more automation.
//!
//! ## Nightly Features Required
//!
//! To use the full suite of automation provided by this feature, you must enable the
//! following nightly features in your crate root:
//!
//! ```rust
//! #![feature(try_trait_v2)]
//! #![feature(custom_inner_attributes)]
//! #![feature(proc_macro_hygiene)]
//! ```
//!
//! ## Overview
//!
//! Enabling `custom_result` changes the behavior of the `?` operator to support
//! automatic conversion into `GlobalErrors<I>`.
//!
//! | Feature Gate | Effect |
//! |--------------|--------|
//! | `try_trait_v2` | Allows using `?` with custom `Result` types; removes the strict requirement for `#[skerry_fn]` on standard functions. |
//! | `custom_inner_attributes`/`proc_macro_hygiene` | Enables the use of `#![skerry]` at the top of a file to annotate all contents automatically. |
//!
//! ## Comparison
//!
//! ### Standard Manual Approach
//! Traditionally, every function and implementation block requires explicit tagging:
//!
//! ```rust,ignore
//! #[skerry_fn]
//! fn check_auth() -> Result<(), e![AuthError]> {
//! Err(CheckAuthError::AuthError(AuthError))
//! }
//!
//! struct Controller;
//!
//! #[skerry_impl(prefix(Controller))]
//! impl Controller {
//! #[skerry_fn]
//! pub fn run() -> Result<(), e![LibError, *CheckAuthError]> {
//! check_auth()?;
//! lib_fn_that_returns_error()?;
//! Ok(())
//! }
//! }
//! #[skerry_trait(prefix(ToJson))]
//! trait ToJson {
//! #[skerry_fn]
//! fn to_json(&self) -> Result<(), e![InvalidParse]>;
//! }
//!
//! impl ToJson for Controller {
//! #[skerry_fn]
//! fn to_json(&self) -> Result<(), ToJsonError> {
//! Ok(())
//! }
//! }
//! ```
//!
//! ### Automated Approach with `custom_result`
//! By adding `#![skerry]` to the top of your module, the boilerplate is handled
//! automatically.
//!
//! ```rust,ignore
//! #![skerry]
//!
//! fn check_auth() -> Result<(), e![AuthError]> {
//! Err(CheckAuthError::AuthError(AuthError))
//! }
//!
//! struct Controller;
//!
//! impl Controller {
//! pub fn run() -> Result<(), e![LibError, *CheckAuthError]> {
//! check_auth()?;
//! lib_fn_that_returns_error()?;
//! Ok(())
//! }
//! }
//!
//! trait ToJson {
//! fn to_json(&self) -> Result<(), e![InvalidParse]>;
//! }
//!
//! impl ToJson for Controller {
//! fn to_json(&self) -> Result<(), ToJsonError> {
//! Ok(())
//! }
//! }
//! ```
//! ---
//!
//! ## 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.
pub use ;