@@ -5,7 +5,7 @@ error[E0277]: the trait bound `S: Valuable` is not satisfied
55 | -------- required by a bound introduced by this call
666 | struct Struct {
777 | f: Option<S>,
8- | ^^^^^^^^^ the trait `Valuable` is not implemented for `S`, which is required by `Option<S>: Valuable`
8+ | ^^^^^^^^^ the trait `Valuable` is not implemented for `S`
99 |
1010 = help: the following other types implement trait `Valuable`:
1111 &T
@@ -25,7 +25,7 @@ error[E0277]: the trait bound `S: Valuable` is not satisfied
252510 | #[derive(Valuable)]
2626 | -------- required by a bound introduced by this call
272711 | struct Tuple(Option<S>);
28- | ^^^^^^^^^ the trait `Valuable` is not implemented for `S`, which is required by `Option<S>: Valuable`
28+ | ^^^^^^^^^ the trait `Valuable` is not implemented for `S`
2929 |
3030 = help: the following other types implement trait `Valuable`:
3131 &T
@@ -46,7 +46,7 @@ error[E0277]: the trait bound `S: Valuable` is not satisfied
4646 | -------- required by a bound introduced by this call
474714 | enum Enum {
484815 | Struct { f: Option<S> },
49- | ^ the trait `Valuable` is not implemented for `S`, which is required by `&Option<S>: Valuable`
49+ | ^ the trait `Valuable` is not implemented for `S`
5050 |
5151 = help: the following other types implement trait `Valuable`:
5252 &T
@@ -69,7 +69,7 @@ error[E0277]: the trait bound `S: Valuable` is not satisfied
6969 | -------- required by a bound introduced by this call
7070...
717116 | Tuple(Option<S>),
72- | ^ the trait `Valuable` is not implemented for `S`, which is required by `&Option<S>: Valuable`
72+ | ^ the trait `Valuable` is not implemented for `S`
7373 |
7474 = help: the following other types implement trait `Valuable`:
7575 &T
0 commit comments