pub trait DebugQueryTable {
    type Key;

    fn is_constant(&self, key: Self::Key) -> bool;
    fn keys<C>(&self) -> C
    where
        C: FromIterator<Self::Key>
; }

Required Associated Types

Required Methods

True if salsa thinks that the value for key is a constant, meaning that it can never change, no matter what values the inputs take on from this point.

Get the (current) set of the keys in the query table.

Implementors