mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-23 13:10:19 +00:00
27 lines
750 B
Rust
27 lines
750 B
Rust
crate trait CounterContext: salsa::BaseQueryContext {
|
|
fn increment(&self) -> usize;
|
|
}
|
|
|
|
crate trait QueryContext: CounterContext {
|
|
salsa::query_prototype! {
|
|
fn memoized() for Memoized;
|
|
fn transparent() for Transparent;
|
|
}
|
|
}
|
|
|
|
salsa::query_definition! {
|
|
/// Because this query is memoized, we only increment the counter
|
|
/// the first time it is invoked.
|
|
crate Memoized(query: &impl QueryContext, (): ()) -> usize {
|
|
query.increment()
|
|
}
|
|
}
|
|
|
|
salsa::query_definition! {
|
|
/// Because this query is transparent, each time it is invoked,
|
|
/// we will increment the counter.
|
|
#[storage(transparent)]
|
|
crate Transparent(query: &impl QueryContext, (): ()) -> usize {
|
|
query.increment()
|
|
}
|
|
}
|