|
98 | 98 | //! }
|
99 | 99 | //! ```
|
100 | 100 | //!
|
101 |
| -//! - A `From` impl is generated for each variant containing a `#[from]` |
| 101 | +//! - A `From` impl is generated for each variant that contains a `#[from]` |
102 | 102 | //! attribute.
|
103 | 103 | //!
|
104 |
| -//! Note that the variant must not contain any other fields beyond the source |
105 |
| -//! error and possibly a backtrace. A backtrace is captured from within the |
106 |
| -//! `From` impl if there is a field for it. |
| 104 | +//! The variant using `#[from]` must not contain any other fields beyond the |
| 105 | +//! source error (and possibly a backtrace — see below). Usually |
| 106 | +//! `#[from]` fields are unnamed, but `#[from]` is allowed on a named field |
| 107 | +//! too. |
107 | 108 | //!
|
108 | 109 | //! ```rust
|
109 |
| -//! # const IGNORE: &str = stringify! { |
| 110 | +//! # use core::fmt::{self, Display}; |
| 111 | +//! # use std::io; |
| 112 | +//! # use thiserror::Error; |
| 113 | +//! # |
| 114 | +//! # mod globset { |
| 115 | +//! # #[derive(thiserror::Error, Debug)] |
| 116 | +//! # #[error("...")] |
| 117 | +//! # pub struct Error; |
| 118 | +//! # } |
| 119 | +//! # |
110 | 120 | //! #[derive(Error, Debug)]
|
111 | 121 | //! pub enum MyError {
|
112 |
| -//! Io { |
113 |
| -//! #[from] |
114 |
| -//! source: io::Error, |
115 |
| -//! backtrace: Backtrace, |
116 |
| -//! }, |
| 122 | +//! Io(#[from] io::Error), |
| 123 | +//! Glob(#[from] globset::Error), |
117 | 124 | //! }
|
118 |
| -//! # }; |
| 125 | +//! # |
| 126 | +//! # impl Display for MyError { |
| 127 | +//! # fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result { |
| 128 | +//! # unimplemented!() |
| 129 | +//! # } |
| 130 | +//! # } |
119 | 131 | //! ```
|
120 | 132 | //!
|
121 | 133 | //! - The Error trait's `source()` method is implemented to return whichever
|
|
148 | 160 | //!
|
149 | 161 | //! - The Error trait's `provide()` method is implemented to provide whichever
|
150 | 162 | //! field has a type named `Backtrace`, if any, as a
|
151 |
| -//! `std::backtrace::Backtrace`. |
| 163 | +//! `std::backtrace::Backtrace`. Using `Backtrace` in errors requires a |
| 164 | +//! nightly compiler with Rust version 1.73 or newer. |
152 | 165 | //!
|
153 | 166 | //! ```rust
|
154 | 167 | //! # const IGNORE: &str = stringify! {
|
|
165 | 178 | //! - If a field is both a source (named `source`, or has `#[source]` or
|
166 | 179 | //! `#[from]` attribute) *and* is marked `#[backtrace]`, then the Error
|
167 | 180 | //! trait's `provide()` method is forwarded to the source's `provide` so that
|
168 |
| -//! both layers of the error share the same backtrace. |
| 181 | +//! both layers of the error share the same backtrace. The `#[backtrace]` |
| 182 | +//! attribute requires a nightly compiler with Rust version 1.73 or newer. |
169 | 183 | //!
|
170 | 184 | //! ```rust
|
171 | 185 | //! # const IGNORE: &str = stringify! {
|
|
179 | 193 | //! # };
|
180 | 194 | //! ```
|
181 | 195 | //!
|
| 196 | +//! - For variants that use `#[from]` and also contain a `Backtrace` field, a |
| 197 | +//! backtrace is captured from within the `From` impl. |
| 198 | +//! |
| 199 | +//! ```rust |
| 200 | +//! # const IGNORE: &str = stringify! { |
| 201 | +//! #[derive(Error, Debug)] |
| 202 | +//! pub enum MyError { |
| 203 | +//! Io { |
| 204 | +//! #[from] |
| 205 | +//! source: io::Error, |
| 206 | +//! backtrace: Backtrace, |
| 207 | +//! }, |
| 208 | +//! } |
| 209 | +//! # }; |
| 210 | +//! ``` |
| 211 | +//! |
182 | 212 | //! - Errors may use `error(transparent)` to forward the source and Display
|
183 | 213 | //! methods straight through to an underlying error without adding an
|
184 | 214 | //! additional message. This would be appropriate for enums that need an
|
|
0 commit comments