Skip to content

Commit de8a1e5

Browse files
committed
Update documentation of #[from] and #[backtrace] attributes
1 parent 0bf6e3d commit de8a1e5

File tree

2 files changed

+70
-24
lines changed

2 files changed

+70
-24
lines changed

README.md

+27-11
Original file line numberDiff line numberDiff line change
@@ -88,20 +88,18 @@ pub enum DataStoreError {
8888
}
8989
```
9090

91-
- A `From` impl is generated for each variant containing a `#[from]` attribute.
91+
- A `From` impl is generated for each variant that contains a `#[from]`
92+
attribute.
9293

93-
Note that the variant must not contain any other fields beyond the source
94-
error and possibly a backtrace. A backtrace is captured from within the `From`
95-
impl if there is a field for it.
94+
The variant using `#[from]` must not contain any other fields beyond the
95+
source error (and possibly a backtrace — see below). Usually `#[from]`
96+
fields are unnamed, but `#[from]` is allowed on a named field too.
9697

9798
```rust
9899
#[derive(Error, Debug)]
99100
pub enum MyError {
100-
Io {
101-
#[from]
102-
source: io::Error,
103-
backtrace: Backtrace,
104-
},
101+
Io(#[from] io::Error),
102+
Glob(#[from] globset::Error),
105103
}
106104
```
107105

@@ -125,7 +123,9 @@ pub enum DataStoreError {
125123
```
126124

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

130130
```rust
131131
use std::backtrace::Backtrace;
@@ -140,7 +140,9 @@ pub enum DataStoreError {
140140
- If a field is both a source (named `source`, or has `#[source]` or `#[from]`
141141
attribute) *and* is marked `#[backtrace]`, then the Error trait's `provide()`
142142
method is forwarded to the source's `provide` so that both layers of the error
143-
share the same backtrace.
143+
share the same backtrace. The `#[backtrace]` attribute requires a nightly
144+
compiler with Rust version 1.73 or newer.
145+
144146

145147
```rust
146148
#[derive(Error, Debug)]
@@ -152,6 +154,20 @@ pub enum DataStoreError {
152154
}
153155
```
154156

157+
- For variants that use `#[from]` and also contain a `Backtrace` field, a
158+
backtrace is captured from within the `From` impl.
159+
160+
```rust
161+
#[derive(Error, Debug)]
162+
pub enum MyError {
163+
Io {
164+
#[from]
165+
source: io::Error,
166+
backtrace: Backtrace,
167+
},
168+
}
169+
```
170+
155171
- Errors may use `error(transparent)` to forward the source and Display methods
156172
straight through to an underlying error without adding an additional message.
157173
This would be appropriate for enums that need an "anything else" variant.

src/lib.rs

+43-13
Original file line numberDiff line numberDiff line change
@@ -98,24 +98,36 @@
9898
//! }
9999
//! ```
100100
//!
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]`
102102
//! attribute.
103103
//!
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.
107108
//!
108109
//! ```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+
//! #
110120
//! #[derive(Error, Debug)]
111121
//! 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),
117124
//! }
118-
//! # };
125+
//! #
126+
//! # impl Display for MyError {
127+
//! # fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
128+
//! # unimplemented!()
129+
//! # }
130+
//! # }
119131
//! ```
120132
//!
121133
//! - The Error trait's `source()` method is implemented to return whichever
@@ -148,7 +160,8 @@
148160
//!
149161
//! - The Error trait's `provide()` method is implemented to provide whichever
150162
//! 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.
152165
//!
153166
//! ```rust
154167
//! # const IGNORE: &str = stringify! {
@@ -165,7 +178,8 @@
165178
//! - If a field is both a source (named `source`, or has `#[source]` or
166179
//! `#[from]` attribute) *and* is marked `#[backtrace]`, then the Error
167180
//! 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.
169183
//!
170184
//! ```rust
171185
//! # const IGNORE: &str = stringify! {
@@ -179,6 +193,22 @@
179193
//! # };
180194
//! ```
181195
//!
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+
//!
182212
//! - Errors may use `error(transparent)` to forward the source and Display
183213
//! methods straight through to an underlying error without adding an
184214
//! additional message. This would be appropriate for enums that need an

0 commit comments

Comments
 (0)