mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-02-08 21:35:47 +00:00
7 lines
140 B
Rust
7 lines
140 B
Rust
trait Db: salsa::DbWithJar<Jar> {}
|
|
|
|
#[salsa::jar(db = Db)]
|
|
struct Jar(Keywords<'_>);
|
|
|
|
#[salsa::interned(jar = Jar)]
|
|
struct Keywords<'db> {}
|