Skip to content

Commit

Permalink
next-api: ResolvedVc<T>, last part
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 29, 2024
1 parent 06dc314 commit e4482ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/next-api/src/route.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ impl AppPageRoute {
#[derive(Clone, Debug)]
pub enum Route {
Page {
html_endpoint: Vc<Box<dyn Endpoint>>,
data_endpoint: Vc<Box<dyn Endpoint>>,
html_endpoint: ResolvedVc<Box<dyn Endpoint>>,

Check failure on line 33 in crates/next-api/src/route.rs

View workflow job for this annotation

GitHub Actions / rustdoc check / build

cannot find type `ResolvedVc` in this scope

Check failure on line 33 in crates/next-api/src/route.rs

View workflow job for this annotation

GitHub Actions / rust check / build

cannot find type `ResolvedVc` in this scope

Check failure on line 33 in crates/next-api/src/route.rs

View workflow job for this annotation

GitHub Actions / stable - x86_64-unknown-linux-gnu - node@16

cannot find type `ResolvedVc` in this scope
data_endpoint: ResolvedVc<Box<dyn Endpoint>>,

Check failure on line 34 in crates/next-api/src/route.rs

View workflow job for this annotation

GitHub Actions / rustdoc check / build

cannot find type `ResolvedVc` in this scope

Check failure on line 34 in crates/next-api/src/route.rs

View workflow job for this annotation

GitHub Actions / rust check / build

cannot find type `ResolvedVc` in this scope

Check failure on line 34 in crates/next-api/src/route.rs

View workflow job for this annotation

GitHub Actions / stable - x86_64-unknown-linux-gnu - node@16

cannot find type `ResolvedVc` in this scope
},
PageApi {
endpoint: Vc<Box<dyn Endpoint>>,
endpoint: ResolvedVc<Box<dyn Endpoint>>,

Check failure on line 37 in crates/next-api/src/route.rs

View workflow job for this annotation

GitHub Actions / rustdoc check / build

cannot find type `ResolvedVc` in this scope

Check failure on line 37 in crates/next-api/src/route.rs

View workflow job for this annotation

GitHub Actions / rust check / build

cannot find type `ResolvedVc` in this scope

Check failure on line 37 in crates/next-api/src/route.rs

View workflow job for this annotation

GitHub Actions / stable - x86_64-unknown-linux-gnu - node@16

cannot find type `ResolvedVc` in this scope
},
AppPage(Vec<AppPageRoute>),
AppRoute {
original_name: String,
endpoint: Vc<Box<dyn Endpoint>>,
endpoint: ResolvedVc<Box<dyn Endpoint>>,

Check failure on line 42 in crates/next-api/src/route.rs

View workflow job for this annotation

GitHub Actions / rustdoc check / build

cannot find type `ResolvedVc` in this scope

Check failure on line 42 in crates/next-api/src/route.rs

View workflow job for this annotation

GitHub Actions / rust check / build

cannot find type `ResolvedVc` in this scope

Check failure on line 42 in crates/next-api/src/route.rs

View workflow job for this annotation

GitHub Actions / stable - x86_64-unknown-linux-gnu - node@16

cannot find type `ResolvedVc` in this scope
},
Conflict,
}
Expand Down

0 comments on commit e4482ba

Please sign in to comment.