mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-16 10:12:02 +00:00
14 lines
928 B
Text
14 lines
928 B
Text
error[E0277]: the trait bound `MyInput: TrackedStructInDb<dyn Db>` is not satisfied
|
|
--> tests/compile-fail/specify-does-not-work-if-the-key-is-a-salsa-input.rs:21:28
|
|
|
|
|
20 | #[salsa::tracked(jar = Jar, specify)]
|
|
| ------------------------------------- required by a bound introduced by this call
|
|
21 | fn tracked_fn(db: &dyn Db, input: MyInput) -> MyTracked {
|
|
| ^^^^^ the trait `TrackedStructInDb<dyn Db>` is not implemented for `MyInput`
|
|
|
|
|
= help: the trait `TrackedStructInDb<DB>` is implemented for `MyTracked`
|
|
note: required by a bound in `function::specify::<impl FunctionIngredient<C>>::specify_and_record`
|
|
--> $WORKSPACE/components/salsa-2022/src/function/specify.rs
|
|
|
|
|
| C::Key: TrackedStructInDb<DynDb<'db, C>>,
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `function::specify::<impl FunctionIngredient<C>>::specify_and_record`
|