1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
use crate::salsa::plumbing;
use crate::salsa::plumbing::QueryStorageOps;
use crate::salsa::Query;
use crate::salsa::QueryTable;
use std::iter::FromIterator;
pub trait DebugQueryTable {
type Key;
fn is_constant(&self, key: Self::Key) -> bool;
fn keys<C>(&self) -> C
where
C: FromIterator<Self::Key>;
}
impl<DB, Q> DebugQueryTable for QueryTable<'_, DB, Q>
where
DB: plumbing::GetQueryTable<Q>,
Q: Query<DB>,
{
type Key = Q::Key;
fn is_constant(&self, key: Q::Key) -> bool {
self.storage.is_constant(self.db, &key)
}
fn keys<C>(&self) -> C
where
C: FromIterator<Q::Key>,
{
self.storage.keys(self.db)
}
}