@@ -77,27 +77,27 @@ error[E0425]: cannot find type `T` in this scope
7777201 | fn view_nonexistent_table(ctx: &ViewContext) -> impl Query<T> {
7878 | ^ not found in this scope
7979
80- error[E0277]: the trait bound `ViewKind<ReducerContext>: ViewKindTrait` is not satisfied
80+ error[E0277]: the trait bound `spacetimedb::rt:: ViewKind<ReducerContext>: ViewKindTrait` is not satisfied
8181 --> tests/ui/views.rs:106:1
8282 |
8383106 | #[view(accessor = view_def_wrong_context, public)]
84- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `ViewKindTrait` is not implemented for `ViewKind<ReducerContext>`
84+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `ViewKindTrait` is not implemented for `spacetimedb::rt:: ViewKind<ReducerContext>`
8585 |
8686help: the following other types implement trait `ViewKindTrait`
8787 --> src/rt.rs
8888 |
8989 | impl ViewKindTrait for ViewKind<ViewContext> {
90- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `ViewKind<ViewContext>`
90+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `spacetimedb::rt:: ViewKind<ViewContext>`
9191...
9292 | impl ViewKindTrait for ViewKind<AnonymousViewContext> {
93- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `ViewKind<AnonymousViewContext>`
93+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `spacetimedb::rt:: ViewKind<AnonymousViewContext>`
9494 = note: this error originates in the attribute macro `view` (in Nightly builds, run with -Z macro-backtrace for more info)
9595
9696error[E0276]: impl has stricter requirements than trait
9797 --> tests/ui/views.rs:106:1
9898 |
9999106 | #[view(accessor = view_def_wrong_context, public)]
100- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `ViewKind<ReducerContext>: ViewKindTrait`
100+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `spacetimedb::rt:: ViewKind<ReducerContext>: ViewKindTrait`
101101 |
102102 = note: this error originates in the attribute macro `view` (in Nightly builds, run with -Z macro-backtrace for more info)
103103
0 commit comments