mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-13 00:40:22 +00:00
2d2bdfe7f1
They aren't meant to be things to model oneself after.
27 lines
731 B
Rust
27 lines
731 B
Rust
crate trait CounterContext: salsa::QueryContext {
|
|
fn increment(&self) -> usize;
|
|
}
|
|
|
|
crate trait QueryContext: CounterContext {
|
|
salsa::query_prototype! {
|
|
fn memoized() for Memoized;
|
|
fn volatile() for Volatile;
|
|
}
|
|
}
|
|
|
|
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 volatile, each time it is invoked,
|
|
/// we will increment the counter.
|
|
#[storage(volatile)]
|
|
crate Volatile(query: &impl QueryContext, (): ()) -> usize {
|
|
query.increment()
|
|
}
|
|
}
|