Structs§
- Iter
- Returned by Error::iter
Traits§
- Error
- A “replacement” trait for
std::error::Error
. You should use this as a bound instead of that one, since this one has more guarantees, although it is entirely logically identical tostd::error::Error + Send + Sync + 'static
.
Derive Macros§
- Error
- Derive
std::error::Error
for the struct or enum, and ascertain that it isSend
,Sync
,'static
, and thus alsoerroneous::Error
.