pub trait QueryStorage {
    type Value: Debug;
    type Stored: Clone;

    fn store_nocache(&self, value: Self::Value) -> Self::Stored;
}

Required Associated Types

Required Methods

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

Implementors