2022-07-01 18:33:35 -05:00
|
|
|
error[E0599]: the method `get` exists for struct `Victim<'_, Self>`, but its trait bounds were not satisfied
|
|
|
|
--> $DIR/impl-derived-implicit-sized-bound.rs:31:19
|
|
|
|
|
|
2022-07-01 18:47:26 -05:00
|
|
|
LL | struct Victim<'a, T: Perpetrator + ?Sized>
|
|
|
|
| ------------------------------------------
|
|
|
|
| |
|
|
|
|
| method `get` not found for this struct
|
|
|
|
| doesn't satisfy `Victim<'_, Self>: VictimTrait`
|
2022-07-01 18:33:35 -05:00
|
|
|
...
|
2022-07-01 18:47:26 -05:00
|
|
|
LL | self.getter().get();
|
|
|
|
| ^^^ method cannot be called on `Victim<'_, Self>` due to unsatisfied trait bounds
|
2022-07-01 18:33:35 -05:00
|
|
|
|
|
|
|
|
note: trait bound `Self: Sized` was not satisfied
|
|
|
|
--> $DIR/impl-derived-implicit-sized-bound.rs:15:10
|
|
|
|
|
|
|
|
|
LL | impl<'a, T: Perpetrator /*+ ?Sized*/> VictimTrait for Victim<'a, T> {
|
|
|
|
| ^ ----------- -------------
|
|
|
|
| |
|
|
|
|
| unsatisfied trait bound introduced here
|
2022-07-01 18:47:26 -05:00
|
|
|
help: consider relaxing the type parameter's implicit `Sized` bound
|
|
|
|
|
|
|
|
|
LL | impl<'a, T: ?Sized + Perpetrator /*+ ?Sized*/> VictimTrait for Victim<'a, T> {
|
|
|
|
| ++++++++
|
2022-07-01 18:33:35 -05:00
|
|
|
help: consider restricting the type parameter to satisfy the trait bound
|
|
|
|
|
|
|
|
|
LL | Self: Sized, Self: Sized
|
|
|
|
| +++++++++++++
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|