mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-06 06:17:39 +03:00
This eliminates potential flakiness if parallel rustc were to compile thw two impls in different threads, affecting the order in which the two errors are emitted.
9 lines
441 B
Text
9 lines
441 B
Text
error[E0599]: no method named `as_dyn_error` found for type `std::string::String` in the current scope
|
|
--> $DIR/source-struct-not-error.rs:6:5
|
|
|
|
|
6 | source: String,
|
|
| ^^^^^^ method not found in `std::string::String`
|
|
|
|
|
= note: the method `as_dyn_error` exists but the following trait bounds were not satisfied:
|
|
`std::string::String : thiserror::aserror::AsDynError`
|
|
`str : thiserror::aserror::AsDynError`
|