You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I added the two git repos to my Cargo.toml (no Rust code from the mdbook yet) and ran cargo run:
error[E0599]: the function or associated item `new` exists for struct `HistoryReplayer<'_, _, _, _, _>`, but its trait bounds were not satisfied
--> /Users/emacs/.cargo/git/checkouts/differential-dataflow-d065d23d797aa027/b084ced/src/operators/reduce.rs:474:76
|
474 | let mut thinker = history_replay::HistoryReplayer::new();
| ^^^ function or associated item cannot be called on `HistoryReplayer<'_, _, _, _, _>` due to unsatisfied trait bounds
...
684 | pub struct HistoryReplayer<'a, C1, C2, C3, V>
| --------------------------------------------- function or associated item `new` not found for this struct because it doesn't satisfy `_: PerKeyCompute<'_, _, _, _, _>`
|
note: the following trait bounds were not satisfied:
`<<_ as cursor::Cursor>::Val<'b> as IntoOwned<'b>>::Owned = _`
`<_ as cursor::Cursor>::Val<'b>: IntoOwned<'b>`
--> /Users/emacs/.cargo/git/checkouts/differential-dataflow-d065d23d797aa027/b084ced/src/operators/reduce.rs:710:31
|
704 | impl<'a, C1, C2, C3, V> PerKeyCompute<'a, C1, C2, C3, V> for HistoryReplayer<'a, C1, C2, C3, V>
| -------------------------------- ----------------------------------
...
710 | for<'b> C2::Val<'b> : IntoOwned<'b, Owned = V>,
| ^^^^^^^^^^^^^^^^^^^^^^^^
| | |
| | unsatisfied trait bound introduced here
| unsatisfied trait bound introduced here
For more information about this error, try `rustc --explain E0599`.
error: could not compile `differential-dataflow` (lib) due to 1 previous error
I added the two git repos to my Cargo.toml (no Rust code from the mdbook yet) and ran
cargo run
:The text was updated successfully, but these errors were encountered: