[][src]Struct dyn_cache::CacheEntry

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

A fully-initialized input/output entry, ready to be written to the cache. Obtained from CacheMiss::init and passed to local::LocalCache::store or sync::SendCache::store.

Trait Implementations

impl<'k, Key: Clone + ?Sized, Scope: Clone, Input: Clone, Output: Clone, H: Clone> Clone for CacheEntry<'k, Key, Scope, Input, Output, H>[src]

impl<'k, Key: Debug + ?Sized, Scope: Debug, Input: Debug, Output: Debug, H: Debug> Debug for CacheEntry<'k, Key, Scope, Input, Output, H>[src]

impl<'k, Key: Eq + ?Sized, Scope: Eq, Input: Eq, Output: Eq, H: Eq> Eq for CacheEntry<'k, Key, Scope, Input, Output, H>[src]

impl<'k, Key: PartialEq + ?Sized, Scope: PartialEq, Input: PartialEq, Output: PartialEq, H: PartialEq> PartialEq<CacheEntry<'k, Key, Scope, Input, Output, H>> for CacheEntry<'k, Key, Scope, Input, Output, H>[src]

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

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

Auto Trait Implementations

impl<'k, Key, Scope, Input, Output, H = RandomState> !RefUnwindSafe for CacheEntry<'k, Key, Scope, Input, Output, H>

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, Scope, Input, Output, H = RandomState> !UnwindSafe for CacheEntry<'k, Key, Scope, Input, Output, H>

Blanket Implementations

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

impl<T> AsContext for T where
    T: Debug + 'static, 
[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> Erased for T

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.