2018-07-15 21:11:54 +00:00
|
|
|
error[E0277]: the trait bound `Params: Plugin<i32>` is not satisfied
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-45801.rs:21:9
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
|
LL | req.get_ref::<Params>();
|
|
|
|
| ^^^^^^^ the trait `Plugin<i32>` is not implemented for `Params`
|
|
|
|
|
|
2024-10-24 22:16:43 +00:00
|
|
|
= help: the trait `Plugin<i32>` is not implemented for `Params`
|
|
|
|
but trait `Plugin<Foo>` is implemented for it
|
2023-09-10 03:33:07 +00:00
|
|
|
= help: for that trait implementation, expected `Foo`, found `i32`
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|