Trait rustc_query_system::query::caches::QueryStorage
source · pub trait QueryStorage {
type Value: Debug;
type Stored: Clone;
fn store_nocache(&self, value: Self::Value) -> Self::Stored;
}
Required Associated Types
Required Methods
sourcefn store_nocache(&self, value: Self::Value) -> Self::Stored
fn store_nocache(&self, value: Self::Value) -> Self::Stored
Store a value without putting it in the cache. This is meant to be used with cycle errors.