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