mirror of
https://github.com/salsa-rs/salsa.git
synced 2024-11-24 04:09:36 +00:00
daaa78056a
Under this design, *all* databases are a `DatabaseImpl<U>`, where the `U` implements `UserData` (you can use `()` if there is none). Code would default to `&dyn salsa::Database` but if you want to give access to the userdata, you can define a custom database trait `MyDatabase: salsa::Databse` so long as you * annotate `MyDatabase` trait definition of impls of `MyDatabase` with `#[salsa::db]` * implement `MyDatabase` for `DatabaseImpl<U>` where `U` is your userdata (this could be a blanket impl, if you don't know the precise userdata type). The `tests/common/mod.rs` shows the pattern.
20 lines
444 B
Rust
20 lines
444 B
Rust
//! Test that a `tracked` fn on a `salsa::interned`
|
|
//! compiles and executes successfully.
|
|
|
|
#[salsa::interned]
|
|
struct Name<'db> {
|
|
name: String,
|
|
}
|
|
|
|
#[salsa::tracked]
|
|
fn tracked_fn<'db>(db: &'db dyn salsa::Database, name: Name<'db>) -> String {
|
|
name.name(db).clone()
|
|
}
|
|
|
|
#[test]
|
|
fn execute() {
|
|
let db = salsa::DatabaseImpl::new();
|
|
let name = Name::new(&db, "Salsa".to_string());
|
|
|
|
assert_eq!(tracked_fn(&db, name), "Salsa");
|
|
}
|