[][src]Struct dyn_cache::CacheMiss

pub struct CacheMiss<'k, Key: ?Sized, Scope, Input, Output, H = DefaultHashBuilder> { /* fields omitted */ }

The result of a failed attempt to retrieve a value from the cache. Initialize a full CacheEntry for storage with CacheMiss::init.

Implementations

impl<'k, Key: ?Sized, Scope, Input, Output, H> CacheMiss<'k, Key, Scope, Input, Output, H>[src]

pub fn init<R>(
    self,
    input: Input,
    query: impl FnOnce(&Input) -> (Output, R)
) -> (CacheEntry<'k, Key, Scope, Input, Output, H>, R)
[src]

Prepare the cache miss to be populated by running query(arg), returning a separate value. The value returned (R) is typically derived in some way from the stored Output.

Auto Trait Implementations

impl<'k, Key: ?Sized, Scope, Input, Output, H> RefUnwindSafe for CacheMiss<'k, Key, Scope, Input, Output, H> where
    H: RefUnwindSafe,
    Input: RefUnwindSafe,
    Key: RefUnwindSafe,
    Output: RefUnwindSafe,
    Scope: RefUnwindSafe

impl<'k, Key: ?Sized, Scope, Input, Output, H> Send for CacheMiss<'k, Key, Scope, Input, Output, H> where
    H: Send,
    Input: Send,
    Key: Sync,
    Output: Send,
    Scope: Send

impl<'k, Key: ?Sized, Scope, Input, Output, H> Sync for CacheMiss<'k, Key, Scope, Input, Output, H> where
    H: Sync,
    Input: Sync,
    Key: Sync,
    Output: Sync,
    Scope: Sync

impl<'k, Key: ?Sized, Scope, Input, Output, H> Unpin for CacheMiss<'k, Key, Scope, Input, Output, H> where
    H: Unpin,
    Input: Unpin,
    Output: Unpin,
    Scope: Unpin

impl<'k, Key: ?Sized, Scope, Input, Output, H> UnwindSafe for CacheMiss<'k, Key, Scope, Input, Output, H> where
    H: UnwindSafe,
    Input: UnwindSafe,
    Key: RefUnwindSafe,
    Output: UnwindSafe,
    Scope: UnwindSafe

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> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[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.