@@ -61,20 +61,20 @@ error[E0425]: cannot find type `ScheduledTable` in this scope
6161 | ^^^^^^^^^^^^^^ not found in this scope
6262
6363error[E0425]: cannot find type `T` in this scope
64- --> tests/ui/views.rs:202 :60
64+ --> tests/ui/views.rs:201 :60
6565 |
66- 202 | fn view_nonexistent_table(ctx: &ViewContext) -> impl Query<T> {
66+ 201 | fn view_nonexistent_table(ctx: &ViewContext) -> impl Query<T> {
6767 | ^ not found in this scope
6868 |
6969help: you might be missing a type parameter
7070 |
71- 202 | fn view_nonexistent_table<T>(ctx: &ViewContext) -> impl Query<T> {
71+ 201 | fn view_nonexistent_table<T>(ctx: &ViewContext) -> impl Query<T> {
7272 | +++
7373
7474error[E0425]: cannot find type `T` in this scope
75- --> tests/ui/views.rs:202 :60
75+ --> tests/ui/views.rs:201 :60
7676 |
77- 202 | fn view_nonexistent_table(ctx: &ViewContext) -> impl Query<T> {
77+ 201 | fn view_nonexistent_table(ctx: &ViewContext) -> impl Query<T> {
7878 | ^ not found in this scope
7979
8080error[E0277]: the trait bound `ViewKind<ReducerContext>: ViewKindTrait` is not satisfied
@@ -411,9 +411,9 @@ help: the trait `SpacetimeType` is not implemented for `NotSpacetimeType`
411411 = note: required for `Option<NotSpacetimeType>` to implement `SpacetimeType`
412412
413413error[E0277]: the trait bound `{integer}: RHS<Player, spacetimedb::Identity>` is not satisfied
414- --> tests/ui/views.rs:160 :49
414+ --> tests/ui/views.rs:159 :49
415415 |
416- 160 | ctx.from.player().r#where(|a| a.identity.eq(42)).build()
416+ 159 | ctx.from.player().r#where(|a| a.identity.eq(42)).build()
417417 | -- ^^ the trait `RHS<Player, spacetimedb::Identity>` is not implemented for `{integer}`
418418 | |
419419 | required by a bound introduced by this call
@@ -435,9 +435,9 @@ note: required by a bound in `Col::<T, V>::eq`
435435 | ^^^^^^^^^ required by this bound in `Col::<T, V>::eq`
436436
437437error[E0277]: the trait bound `u32: RHS<PlayerInfo, u8>` is not satisfied
438- --> tests/ui/views.rs:166 :49
438+ --> tests/ui/views.rs:165 :49
439439 |
440- 166 | ctx.from.player_info().r#where(|a| a.age.eq(4200u32)).build()
440+ 165 | ctx.from.player_info().r#where(|a| a.age.eq(4200u32)).build()
441441 | -- ^^^^^^^ the trait `RHS<PlayerInfo, u8>` is not implemented for `u32`
442442 | |
443443 | required by a bound introduced by this call
@@ -457,9 +457,9 @@ note: required by a bound in `Col::<T, V>::eq`
457457 = note: this error originates in the macro `impl_rhs` (in Nightly builds, run with -Z macro-backtrace for more info)
458458
459459error[E0308]: mismatched types
460- --> tests/ui/views.rs:175 :62
460+ --> tests/ui/views.rs:174 :62
461461 |
462- 175 | .left_semijoin(ctx.from.player(), |a, b| a.weight.eq(b.identity))
462+ 174 | .left_semijoin(ctx.from.player(), |a, b| a.weight.eq(b.identity))
463463 | -- ^^^^^^^^^^ expected `IxCol<Player, u32>`, found `IxCol<Player, Identity>`
464464 | |
465465 | arguments to this method are incorrect
@@ -473,15 +473,15 @@ note: method defined here
473473 | ^^
474474
475475error[E0609]: no field `age` on type `&PlayerInfoIxCols`
476- --> tests/ui/views.rs:185 :72
476+ --> tests/ui/views.rs:184 :72
477477 |
478- 185 | .right_semijoin(ctx.from.player_info(), |a, b| a.identity.eq(b.age))
478+ 184 | .right_semijoin(ctx.from.player_info(), |a, b| a.identity.eq(b.age))
479479 | ^^^ unknown field
480480 |
481481 = note: available fields are: `identity`, `weight`
482482
483483error[E0599]: no method named `xyz` found for struct `QueryBuilder` in the current scope
484- --> tests/ui/views.rs:203 :14
484+ --> tests/ui/views.rs:202 :14
485485 |
486- 203 | ctx.from.xyz().build()
486+ 202 | ctx.from.xyz().build()
487487 | ^^^ method not found in `QueryBuilder`
0 commit comments