wherror 2.2.0

Fork of thiserror derive(Error) with std::panic::Location support
Documentation
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
# wherror

[![github]](https://github.com/dra11y/wherror) [![crates-io]](https://crates.io/crates/wherror) [![docs-rs]](https://docs.rs/wherror)

[github]: https://img.shields.io/badge/github-dra11y/wherror-8da0cb?style=for-the-badge&labelColor=555555&logo=github
[crates-io]: https://img.shields.io/crates/v/wherror.svg?style=for-the-badge&color=fc8d62&logo=rust
[docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs

<br>

Fork of [thiserror] `derive(Error)` with [`std::panic::Location`]
support. This library provides a convenient derive macro for the standard library's
[`std::error::Error`] trait.

This fork was created to add location support ([thiserror#291]) and additional convenience features.

[`std::error::Error`]: https://doc.rust-lang.org/std/error/trait.Error.html
[`std::panic::Location`]: https://doc.rust-lang.org/std/panic/struct.Location.html
[thiserror]: https://github.com/dtolnay/thiserror
[thiserror#291]: https://github.com/dtolnay/thiserror/pull/291

```toml
[dependencies]
wherror = "2"
```

### Location Support

Add a field of type `&'static std::panic::Location<'static>` to automatically capture where errors are created:

```rust
use wherror::Error;

#[derive(Error, Debug)]
#[error("Failed at {location}: {source}")]
pub struct MyError {
    #[from]
    source: std::io::Error,
    location: &'static std::panic::Location<'static>,  // Auto-populated
}

// Location automatically captured when using `?`
fn read_file() -> Result<String, MyError> {
    let content = std::fs::read_to_string("file.txt")?;
    Ok(content)
}
```

<br>

## Example

```rust
use wherror::Error;

#[derive(Error, Debug)]
pub enum DataStoreError {
    #[error("data store disconnected")]
    Disconnect(#[from] io::Error),
    #[error("the data for key `{0}` is not available")]
    Redaction(String),
    #[error("invalid header (expected {expected:?}, found {found:?})")]
    InvalidHeader {
        expected: String,
        found: String,
    },
    #[error("unknown data store error")]
    Unknown,
}
```

<br>

## Details

Wherror deliberately does not appear in your public API. You get the same
thing as if you had written an implementation of `std::error::Error` by hand,
and switching from handwritten impls to thiserror or vice versa is not a
breaking change.

- Errors may be enums, structs with named fields, tuple structs, or unit
  structs.

- A `Display` impl is generated for your error if you provide `#[error("...")]`
  messages on the struct or each variant of your enum, as shown above in the
  example.

  The messages support a shorthand for interpolating fields from the error.

    - `#[error("{var}")]`&ensp;&ensp;`write!("{}", self.var)`
    - `#[error("{0}")]`&ensp;&ensp;`write!("{}", self.0)`
    - `#[error("{var:?}")]`&ensp;&ensp;`write!("{:?}", self.var)`
    - `#[error("{0:?}")]`&ensp;&ensp;`write!("{:?}", self.0)`

  These shorthands can be used together with any additional format args, which
  may be arbitrary expressions. For example:

  ```rust
  # use core::i32;
  # use wherror::Error;
  #
  #[derive(Error, Debug)]
  pub enum Error {
      #[error("invalid rdo_lookahead_frames {0} (expected < {max})", max = i32::MAX)]
      InvalidLookahead(u32),
  }
  ```

  If one of the additional expression arguments needs to refer to a field of the
  struct or enum, then refer to named fields as `.var` and tuple fields as `.0`.

  ```rust
  # use wherror::Error;
  #
  # fn first_char(s: &String) -> char {
  #     s.chars().next().unwrap()
  # }
  #
  # #[derive(Debug)]
  # struct Limits {
  #     lo: usize,
  #     hi: usize,
  # }
  #
  #[derive(Error, Debug)]
  pub enum Error {
      #[error("first letter must be lowercase but was {:?}", first_char(.0))]
      WrongCase(String),
      #[error("invalid index {idx}, expected at least {} and at most {}", .limits.lo, .limits.hi)]
      OutOfBounds { idx: usize, limits: Limits },
  }
  ```

- A `From` impl is generated for each variant that contains a `#[from]`
  attribute.

  The variant using `#[from]` must not contain any other fields beyond the
  source error (and possibly a location or backtrace &mdash; see below). Usually `#[from]`
  fields are unnamed, but `#[from]` is allowed on a named field too.

  ```rust
  # use core::fmt::{self, Display};
  # use std::io;
  # use wherror::Error;
  #
  # mod globset {
  #     #[derive(wherror::Error, Debug)]
  #     #[error("...")]
  #     pub struct Error;
  # }
  #
  #[derive(Error, Debug)]
  pub enum MyError {
      Io(#[from] io::Error),
      Glob(#[from] globset::Error),
  }
  #
  # impl Display for MyError {
  #     fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
  #         unimplemented!()
  #     }
  # }
  ```

  For `Box<T>` fields with `#[from]`, both `From<Box<T>>` and `From<T>`
  implementations are automatically generated for enhanced ergonomics:

  ```rust
  # use std::io;
  # use wherror::Error;
  #
  #[derive(Error, Debug)]
  #[error("Error occurred")]
  pub struct MyError {
      #[from]
      source: Box<io::Error>,
  }
  #
  # fn example() -> Result<(), Box<dyn std::error::Error>> {
  #     let io_error = io::Error::new(io::ErrorKind::Other, "test");
  #
  #     // Both work:
  #     let err1: MyError = Box::new(io_error).into();
  #     let err2: MyError = io::Error::new(io::ErrorKind::Other, "test").into();  // automatically boxed
  #     Ok(())
  # }
  ```

- Use `#[error(debug)]` as a fallback to automatically generate Display
  implementations using the Debug format. This is useful for rapid prototyping
  or when you want to use the standard Debug representation.

  For enums, you can apply `#[error(debug)]` at the type level to automatically
  generate Display for all variants that don't have explicit `#[error("...")]`
  messages:

  ```rust
  # use wherror::Error;
  #
  #[derive(Error, Debug)]
  #[error(debug)]  // fallback for variants without explicit messages
  pub enum MyError {
      #[error("Custom message: {0}")]
      WithMessage(String),

      // These will use Debug formatting:
      Simple,
      Complex { code: u32, message: String },
      WithData(i32, String),
  }
  ```

  You can also apply `#[error(debug)]` to individual variants or struct types:

  ```rust
  # use wherror::Error;
  #
  #[derive(Error, Debug)]
  pub enum MyError {
      #[error("IO error: {0}")]
      Io(std::io::Error),

      #[error(debug)]  // This variant uses Debug formatting
      Other { details: String, code: i32 },
  }

  #[derive(Error, Debug)]
  #[error(debug)]  // Entire struct uses Debug formatting
  pub struct DebugError {
      message: String,
      code: u32,
  }
  ```

- The Error trait's `source()` method is implemented to return whichever field
  has a `#[source]` attribute or is named `source`, if any. This is for
  identifying the underlying lower level error that caused your error.

  The `#[from]` attribute always implies that the same field is `#[source]`, so
  you don't ever need to specify both attributes.

  Any error type that implements `std::error::Error` or dereferences to `dyn
  std::error::Error` will work as a source.

  ```rust
  # use core::fmt::{self, Display};
  # use wherror::Error;
  #
  #[derive(Error, Debug)]
  pub struct MyError {
      msg: String,
      #[source]  // optional if field name is `source`
      source: anyhow::Error,
  }
  #
  # impl Display for MyError {
  #     fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
  #         unimplemented!()
  #     }
  # }
  ```

- Fields of type `&'static std::panic::Location<'static>` are automatically
  populated with the call site location when errors are created via `From` trait
  conversion. This works seamlessly with the `?` operator for precise error tracking.

  For errors with location fields, a `location()` method is generated that returns
  `Option<&'static std::panic::Location<'static>>`.

  ```rust
  # use wherror::Error;
  #
  #[derive(Error, Debug)]
  #[error("Parse error at {location}: {source}")]
  pub struct ParseError {
      #[from]
      source: std::num::ParseIntError,
      location: &'static std::panic::Location<'static>,  // automatically detected
  }
  #
  # fn example() -> Result<(), ParseError> {
  #     let result: Result<i32, _> = "not_a_number".parse();
  #     let error: ParseError = result.unwrap_err().into();
  #     if let Some(location) = error.location() {
  #         eprintln!("Error at {}:{}", location.file(), location.line());
  #     }
  #     Ok(())
  # }
  ```

- The Error trait's `provide()` method is implemented to provide whichever field
  has a type named `Backtrace`, if any, as a `std::backtrace::Backtrace`. Using
  `Backtrace` in errors requires a nightly compiler with Rust version 1.73 or
  newer.

  ```rust,ignore
  # use std::backtrace::Backtrace;
  # use wherror::Error;
  #
  #[derive(Error, Debug)]
  #[error("Something went wrong: {msg}")]
  pub struct MyError {
      msg: String,
      backtrace: Backtrace,  // automatically detected
  }
  ```

- If a field is both a source (named `source`, or has `#[source]` or `#[from]`
  attribute) *and* is marked `#[backtrace]`, then the Error trait's `provide()`
  method is forwarded to the source's `provide` so that both layers of the error
  share the same backtrace. The `#[backtrace]` attribute requires a nightly
  compiler with Rust version 1.73 or newer.

  ```rust,ignore
  # use std::io;
  # use wherror::Error;
  #
  #[derive(Error, Debug)]
  #[error("IO error occurred")]
  pub enum MyError {
      Io {
          #[backtrace]
          source: io::Error,
      },
  }
  ```

- For variants that use `#[from]` and also contain a `Backtrace` field, a
  backtrace is captured from within the `From` impl.

  ```rust,ignore
  # use std::backtrace::Backtrace;
  # use std::io;
  # use wherror::Error;
  #
  #[derive(Error, Debug)]
  #[error("IO error occurred")]
  pub enum MyError {
      Io {
          #[from]
          source: io::Error,
          backtrace: Backtrace,
      },
  }
  ```

- Errors may use `error(transparent)` to forward the source and Display methods
  straight through to an underlying error without adding an additional message.
  This would be appropriate for enums that need an "anything else" variant.

  ```
  # use wherror::Error;
  #
  #[derive(Error, Debug)]
  pub enum MyError {
      # /*
      ...
      # */

      #[error(transparent)]
      Other(#[from] anyhow::Error),  // source and Display delegate to anyhow::Error
  }
  ```

  Another use case is hiding implementation details of an error representation
  behind an opaque error type, so that the representation is able to evolve
  without breaking the crate's public API.

  ```
  # use wherror::Error;
  #
  // PublicError is public, but opaque and easy to keep compatible.
  #[derive(Error, Debug)]
  #[error(transparent)]
  pub struct PublicError(#[from] ErrorRepr);

  impl PublicError {
      // Accessors for anything we do want to expose publicly.
  }

  // Private and free to change across minor version of the crate.
  #[derive(Error, Debug)]
  enum ErrorRepr {
      # /*
      ...
      # */
  }
  ```

- See also the [`anyhow`] library for a convenient single error type to use in
  application code.

  [`anyhow`]: https://github.com/dtolnay/anyhow

<br>

### Comparison to anyhow

Use wherror if you care about designing your own dedicated error type(s) so
that the caller receives exactly the information that you choose in the event of
failure. This most often applies to library-like code. Use [Anyhow] if you don't
care what error type your functions return, you just want it to be easy. This is
common in application-like code.

[Anyhow]: https://github.com/dtolnay/anyhow

<br>

#### License

<sup>
Licensed under either of <a href="LICENSE-APACHE">Apache License, Version
2.0</a> or <a href="LICENSE-MIT">MIT license</a> at your option.
</sup>

<br>

<sub>
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in this crate by you, as defined in the Apache-2.0 license, shall
be dual licensed as above, without any additional terms or conditions.
</sub>

<br>

#### Attribution

<sup>
Fork of <a href="https://github.com/dtolnay/thiserror">thiserror</a> by David Tolnay,
with location support by <a href="https://github.com/onlycs">Angad Tendulkar</a>
from <a href="https://github.com/dtolnay/thiserror/pull/291">thiserror#291</a>.
</sup>

License: MIT OR Apache-2.0