Trait rustc_query_system::query::caches::QueryStorage[][src]

pub trait QueryStorage {
    type Value: Debug;
    type Stored: Clone;
    fn store_nocache(&self, value: Self::Value) -> Self::Stored;
}

Associated Types

Required methods

Store a value without putting it in the cache. This is meant to be used with cycle errors.

Implementors