Commit graph

94 commits

Author SHA1 Message Date
Carl Sverre
5195f7ccfa Implement #[implicit] to automatically generate fields using the new ImplicitField trait 2024-12-19 11:40:24 -08:00
David Tolnay
2deec96fc0
Merge pull request 397 from zertosh/from_allow_expect 2024-12-13 14:40:50 -08:00
Andres Suarez
100d9164f2 Avoid associating #[from] with lint allow 2024-12-13 14:06:02 -08:00
David Tolnay
485c2b7eed
Reword spurious errors comment 2024-12-08 11:28:58 -08:00
David Tolnay
6e8c7244c9
Suppress deprecation warning on generated From impls 2024-12-08 10:37:43 -08:00
David Tolnay
88a46035e1
Move fallback expansion to separate module 2024-12-07 09:03:07 -08:00
David Tolnay
07e7d990fa
Add "in this derive macro expansion" to missing Display errors 2024-12-07 08:58:16 -08:00
David Tolnay
714229d821
Work around deprecation warning on generated impl for deprecated type 2024-12-07 08:58:16 -08:00
Matthew Donoughe
aa19b7cfce
suppress needless_lifetimes lints from clippy 0.1.83 2024-12-03 08:40:10 -05:00
David Tolnay
d6d896df4c
Access Backtrace exclusively through ::thiserror 2024-11-05 20:58:53 -05:00
David Tolnay
2e99c515f3
Drop Provider API support in pre-1.81 nightlies 2024-11-05 19:26:35 -05:00
David Tolnay
e0e994314b
Access Error trait exclusively through ::thiserror 2024-11-05 19:22:53 -05:00
David Tolnay
2f92680b5f
Access all std types through absolute path 2024-11-05 19:15:15 -05:00
David Tolnay
fa2ba3a531
Perform imports from thiserror through absolute path 2024-11-05 19:06:32 -05:00
David Tolnay
ba9af4522e
Implement #[error(fmt = ...)] 2024-11-05 17:22:27 -05:00
David Tolnay
6cac4c078e
Set span of generated From impls 2024-11-05 00:20:02 -05:00
David Tolnay
e015360076
Rename MemberUnraw::member_span() to just span() 2024-11-04 17:12:08 -05:00
David Tolnay
9116fdb8ea
Use IdentUnraw consistently when comparing Member 2024-11-04 17:12:08 -05:00
oxalica
ae1f47e3e5 Mark #[automatically_derived] for generated impls 2024-09-22 11:24:53 -04:00
David Tolnay
f770921a4f
Resolve assigning_clones clippy lint
warning: assigning the result of `Clone::clone()` may be inefficient
      --> impl/src/ast.rs:85:21
       |
    85 |                     *display = attrs.display.clone();
       |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `display.clone_from(&attrs.display)`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
       = note: `#[warn(clippy::assigning_clones)]` on by default

    warning: assigning the result of `Clone::clone()` may be inefficient
       --> impl/src/expand.rs:158:9
        |
    158 |         display_implied_bounds = display.implied_bounds.clone();
        |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `display_implied_bounds.clone_from(&display.implied_bounds)`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones

    warning: assigning the result of `Clone::clone()` may be inefficient
       --> impl/src/expand.rs:402:21
        |
    402 |                     display_implied_bounds = display.implied_bounds.clone();
        |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `display_implied_bounds.clone_from(&display.implied_bounds)`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
2024-03-07 21:37:48 -08:00
David Tolnay
6b00235610
Leave private traits' name out of scope 2023-12-25 10:26:29 -08:00
David Tolnay
1754825c24
Work around trivial bounds being unstable 2023-12-15 14:13:00 -08:00
David Tolnay
1567f40ec3
Try to remove "doesn't implement Debug" in fallback expansion 2023-12-15 14:12:59 -08:00
David Tolnay
d7e3bdd980
Fix redundant "Error doesn't implement Display" in fallback 2023-12-15 14:12:30 -08:00
David Tolnay
7e5ff62806
Emit an Error impl even in the presence of bad attributes 2023-12-15 14:12:13 -08:00
David Tolnay
ed16526d4d
Delete elaborate spans on path of error trait 2023-12-15 10:52:02 -08:00
David Tolnay
7cec716420
Remove reliance on Spanned for Member 2023-10-19 11:05:01 -07:00
David Tolnay
c9fe739272
Touch up PR 258 2023-10-19 11:05:01 -07:00
Maarten de Vries
a49f7c603d Change span of as_dyn_error() to point compile error at attribute. 2023-10-19 17:09:30 +02:00
David Tolnay
79704adca9
Merge pull request 255 from mina86/a 2023-09-26 16:25:00 -07:00
Michal Nazarewicz
f0f303a7ba Prefer core crate in macro expansions
Prefer using core crate over std in macro expansions wherever a symbol has
a stable equivalent in core.  This makes it easier to eventually support
no_std in the future once error_in_core stabilises.
2023-09-08 00:27:15 +02:00
David Tolnay
7566a29b2a
AsDisplay is no longer an unused import
Prior to PR 251, 2 traits were imported (DisplayAsDisplay, PathAsDisplay),
and in some cases only 1 would be used. Now it's 1 trait and is always
used.
2023-09-02 12:44:45 -07:00
David Tolnay
887c9fb3fc
Touch up PR 251 2023-09-02 12:43:56 -07:00
Michal Nazarewicz
97eeb45b8b Replace DisplayAsDisplay and PathAsDisplay with AsDisplay trait
Rather than having separate traits implementing as_display method,
replace DisplayAsDisplay and PathAsDisplay traits with a AsDisplay
trait.  The difference between those two traits is in the result
returned by the as_display method.  With AsDisplay trait this is
captured by an associated type.

The main motivation for the change is making it simpler to support
no_std builds in the future.  Previously, PathAsDisplay would have to
be handled specially in such builds on the side of macro expansion.
Now, thiserror-impl doesn’t need to be aware of any complications
around AsDisplay since they are all contained in thiserror crate.
2023-09-01 04:59:43 +02:00
David Tolnay
8a95c2583e
Update to nightly's new Error::provide API 2023-08-14 23:15:54 -07:00
David Tolnay
fb8b81f20b
Update to syn 2 2023-03-17 17:49:32 -07:00
David Tolnay
490dc0102b
Eliminate unneeded use of Spanned trait on single tokens 2023-03-13 14:13:41 -07:00
David Tolnay
aaf8449dcb
Use ThiserrorProvide to disambiguate 'provide' method calls 2022-09-13 11:32:06 -07:00
David Tolnay
3bcad5957d
Revert "Directly call source.provide instead of going through dyn error"
This reverts commit f924c251ec.
2022-09-13 11:32:05 -07:00
David Tolnay
f924c251ec
Directly call source.provide instead of going through dyn error 2022-09-04 13:49:39 -07:00
David Tolnay
985da4c7d9
Expose backtrace via generic member access 2022-08-30 19:04:12 -07:00
David Tolnay
c81dc6731b
Make private module more clearly private 2022-08-12 21:53:47 -07:00
David Tolnay
72abba6f04
Deduplicate inferred bounds 2021-09-04 19:52:03 -07:00
David Tolnay
3e699aa43b
Implied bounds for transparent attribute 2021-09-04 19:38:00 -07:00
David Tolnay
1e6e267914
Implied bounds for Display and Error impl 2021-09-04 18:21:37 -07:00
David Tolnay
ec9ac76c52
Revert "Suppress nonstandard_macro_braces in generated code"
This reverts commit 245e7cfd14.
2021-09-04 12:42:56 -07:00
David Tolnay
2a2d1725e7
Support #[from] on an Option field 2021-08-28 15:51:20 -07:00
David Tolnay
799bb53b10
Extract combined backtrace-source case to separate match arm 2021-08-28 13:44:42 -07:00
David Tolnay
d49c5af10f
Handle backtrace coming from Option source field 2021-08-28 13:42:03 -07:00
David Tolnay
2b37b9ed62
Handle enum containing #[source] #[backtrace] field 2021-08-28 13:40:17 -07:00