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