[][src]Struct dyn_cache::CacheEntry

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

A fully-initialized input/output pair, ready to be written to the store.

Auto Trait Implementations

impl<'k, Key: ?Sized, Scope, Input, Output, H> RefUnwindSafe for CacheEntry<'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 CacheEntry<'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 CacheEntry<'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 CacheEntry<'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 CacheEntry<'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.