@@ -4,7 +4,6 @@ error[E0277]: `impl Sized` doesn't implement `std::fmt::Debug`
4
4
LL | println!("{:?}", t);
5
5
| ^ `impl Sized` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug`
6
6
|
7
- = help: the trait `std::fmt::Debug` is not implemented for `impl Sized`
8
7
= note: required by `std::fmt::Debug::fmt`
9
8
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
10
9
help: consider further restricting this bound
@@ -18,7 +17,6 @@ error[E0277]: `T` doesn't implement `std::fmt::Debug`
18
17
LL | println!("{:?}", t);
19
18
| ^ `T` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug`
20
19
|
21
- = help: the trait `std::fmt::Debug` is not implemented for `T`
22
20
= note: required by `std::fmt::Debug::fmt`
23
21
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
24
22
help: consider restricting type parameter `T`
@@ -32,7 +30,6 @@ error[E0277]: `T` doesn't implement `std::fmt::Debug`
32
30
LL | println!("{:?}", t);
33
31
| ^ `T` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug`
34
32
|
35
- = help: the trait `std::fmt::Debug` is not implemented for `T`
36
33
= note: required by `std::fmt::Debug::fmt`
37
34
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
38
35
help: consider further restricting this bound
@@ -46,7 +43,6 @@ error[E0277]: `Y` doesn't implement `std::fmt::Debug`
46
43
LL | println!("{:?} {:?}", x, y);
47
44
| ^ `Y` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug`
48
45
|
49
- = help: the trait `std::fmt::Debug` is not implemented for `Y`
50
46
= note: required by `std::fmt::Debug::fmt`
51
47
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
52
48
help: consider further restricting type parameter `Y`
@@ -60,7 +56,6 @@ error[E0277]: `X` doesn't implement `std::fmt::Debug`
60
56
LL | println!("{:?}", x);
61
57
| ^ `X` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug`
62
58
|
63
- = help: the trait `std::fmt::Debug` is not implemented for `X`
64
59
= note: required by `std::fmt::Debug::fmt`
65
60
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
66
61
help: consider further restricting this bound
@@ -74,7 +69,6 @@ error[E0277]: `X` doesn't implement `std::fmt::Debug`
74
69
LL | println!("{:?}", x);
75
70
| ^ `X` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug`
76
71
|
77
- = help: the trait `std::fmt::Debug` is not implemented for `X`
78
72
= note: required by `std::fmt::Debug::fmt`
79
73
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
80
74
help: consider further restricting type parameter `X`
0 commit comments