mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-15 09:48:53 +00:00
7 lines
131 B
Rust
7 lines
131 B
Rust
trait Db: salsa::DbWithJar<Jar> {}
|
|
|
|
#[salsa::jar(db = Db)]
|
|
struct Jar(Keywords);
|
|
|
|
#[salsa::interned(jar = Jar)]
|
|
struct Keywords {}
|