keep QueryState private

This commit is contained in:
Niko Matsakis 2018-09-28 17:47:40 -04:00
parent fcd8e97500
commit ed92e0f408

View file

@ -27,7 +27,7 @@ where
/// Defines the "current state" of query's memoized results.
#[derive(Debug)]
pub enum QueryState<V> {
enum QueryState<V> {
/// We are currently computing the result of this query; if we see
/// this value in the table, it indeeds a cycle.
InProgress,