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
use ;
use crateBacktrace;
/// Core trait extending `std::error::Error` with backtrace support.
///
/// `Error2` provides methods to access and modify the error's backtrace,
/// enabling detailed error propagation tracking across your application.
///
/// # Implementation
///
/// Typically implemented via `#[derive(Error2)]` macro:
///
/// ```
/// use error2::prelude::*;
///
/// #[derive(Debug, Error2)]
/// #[error2(display("configuration error"))]
/// struct ConfigError {
/// backtrace: Backtrace,
/// }
/// ```
///
/// The macro automatically generates the trait implementation and manages
/// the backtrace field.
///
/// # Accessing Backtrace
///
/// Use the `.backtrace()` method to access error chain and locations:
///
/// ```
/// # use error2::prelude::*;
/// # use std::io;
/// # #[derive(Debug, Error2)]
/// # #[error2(display("test"))]
/// # struct MyError { source: io::Error, backtrace: Backtrace }
/// # fn do_something() -> Result<(), MyError> { Ok(()) }
/// if let Err(e) = do_something() {
/// println!("{}", e.backtrace().error_message());
/// }
/// ```
///
/// See [`Backtrace`] for details on accessing error information.