Struct salsa::QueryTableMut[][src]

pub struct QueryTableMut<'me, Q> where
    Q: Query + 'me, 
{ /* fields omitted */ }

Return value from the query_mut method on Database. Gives access to the set method, notably, that is used to set the value of an input query.

Implementations

impl<'me, Q> QueryTableMut<'me, Q> where
    Q: Query
[src]

pub fn new(
    db: &'me mut <Q as QueryDb<'me>>::DynDb,
    storage: Arc<Q::Storage>
) -> Self
[src]

Constructs a new QueryTableMut.

pub fn set(&mut self, key: Q::Key, value: Q::Value) where
    Q::Storage: InputQueryStorageOps<Q>, 
[src]

Assign a value to an “input query”. Must be used outside of an active query computation.

If you are using snapshot, see the notes on blocking and cancellation on the query_mut method.

pub fn set_with_durability(
    &mut self,
    key: Q::Key,
    value: Q::Value,
    durability: Durability
) where
    Q::Storage: InputQueryStorageOps<Q>, 
[src]

Assign a value to an “input query”, with the additional promise that this value will never change. Must be used outside of an active query computation.

If you are using snapshot, see the notes on blocking and cancellation on the query_mut method.

pub fn set_lru_capacity(&self, cap: usize) where
    Q::Storage: LruQueryStorageOps, 
[src]

Sets the size of LRU cache of values for this query table.

That is, at most cap values will be preset in the table at the same time. This helps with keeping maximum memory usage under control, at the cost of potential extra recalculations of evicted values.

If cap is zero, all values are preserved, this is the default.

pub fn invalidate(&mut self, key: &Q::Key) where
    Q::Storage: DerivedQueryStorageOps<Q>, 
[src]

Marks the computed value as outdated.

This causes salsa to re-execute the query function on the next access to the query, even if all dependencies are up to date.

This is most commonly used as part of the on-demand input pattern.

Auto Trait Implementations

impl<'me, Q> RefUnwindSafe for QueryTableMut<'me, Q> where
    <Q as QueryDb<'me>>::DynDb: RefUnwindSafe,
    <Q as Query>::Storage: RefUnwindSafe

impl<'me, Q> Send for QueryTableMut<'me, Q> where
    <Q as QueryDb<'me>>::DynDb: Send,
    <Q as Query>::Storage: Send + Sync

impl<'me, Q> Sync for QueryTableMut<'me, Q> where
    <Q as QueryDb<'me>>::DynDb: Sync,
    <Q as Query>::Storage: Send + Sync

impl<'me, Q> Unpin for QueryTableMut<'me, Q>

impl<'me, Q> !UnwindSafe for QueryTableMut<'me, Q>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.