error[E0599]: `test_no_bound_on_named_fmt::Error<DebugOnly>` doesn't implement `std::fmt::Display`
--> tests/test_generics.rs:173:22
|
168 | struct Error<T> {
| --------------- method `to_string` not found for this struct because it doesn't satisfy `_: Display` or `_: ToString`
...
173 | assert_eq!(error.to_string(), "...");
| ^^^^^^^^^ `test_no_bound_on_named_fmt::Error<DebugOnly>` cannot be formatted with the default formatter
|
= note: the following trait bounds were not satisfied:
`test_no_bound_on_named_fmt::Error<DebugOnly>: std::fmt::Display`
which is required by `test_no_bound_on_named_fmt::Error<DebugOnly>: ToString`
= note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
note: the trait `std::fmt::Display` must be implemented
--> $RUSTUP_HOME/toolchains/nightly-aarch64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/fmt/mod.rs:727:1
|
727 | pub trait Display {
| ^^^^^^^^^^^^^^^^^
= help: items from traits can only be used if the trait is implemented and in scope
= note: the following trait defines an item `to_string`, perhaps you need to implement it:
candidate #1: `ToString`
Without r#Backtrace:
error[E0308]: mismatched types
--> tests/test_backtrace.rs:42:14
|
42 | #[derive(Error, Debug)]
| ^^^^^
| |
| expected `std::backtrace::Backtrace`, found `not_backtrace::Backtrace`
| arguments to this method are incorrect
|
= note: `not_backtrace::Backtrace` and `std::backtrace::Backtrace` have similar names, but are actually distinct types
note: `not_backtrace::Backtrace` is defined in the current crate
--> tests/test_backtrace.rs:26:9
|
26 | pub struct Backtrace;
| ^^^^^^^^^^^^^^^^^^^^
note: `std::backtrace::Backtrace` is defined in crate `std`
--> $RUSTUP_HOME/toolchains/nightly-aarch64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/backtrace.rs:108:1
|
108 | pub struct Backtrace {
| ^^^^^^^^^^^^^^^^^^^^
note: method defined here
--> $RUSTUP_HOME/toolchains/nightly-aarch64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/error.rs:607:12
|
607 | pub fn provide_ref<T: ?Sized + 'static>(&mut self, value: &'a T) -> &mut Self {
| ^^^^^^^^^^^
= note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info)
Without r#source:
error[E0599]: the method `as_dyn_error` exists for type `char`, but its trait bounds were not satisfied
--> tests/test_source.rs:72:9
|
72 | source: char,
| ^^^^^^ method cannot be called on `char` due to unsatisfied trait bounds
|
= note: the following trait bounds were not satisfied:
`char: std::error::Error`
which is required by `char: AsDynError<'_>`
error[E0277]: `PathBuf` doesn't implement `std::fmt::Display`
--> tests/test_expr.rs:105:14
|
104 | #[derive(Error, Debug)]
| ----- in this derive macro expansion
105 | #[error("{A} {b}", b = &0 as &dyn Trait<i32, A = i32>)]
| ^^^ `PathBuf` cannot be formatted with the default formatter; call `.display()` on it
|
= help: the trait `std::fmt::Display` is not implemented for `PathBuf`
= note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
= note: call `.display()` or `.to_string_lossy()` to safely print paths, as they may contain non-Unicode data
= note: this error originates in the macro `$crate::format_args` which comes from the expansion of the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info)