[−][src]Struct dyn_cache::CacheEntry
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]
pub fn clone(&self) -> CacheEntry<'k, Key, Scope, Input, Output, H>[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[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]
pub fn eq(&self, other: &CacheEntry<'k, Key, Scope, Input, Output, H>) -> bool[src]
pub fn ne(&self, other: &CacheEntry<'k, Key, Scope, Input, Output, H>) -> bool[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>[src]
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, [src]
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, [src]
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, [src]
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>[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> AsContext for T where
T: Debug + 'static, [src]
T: Debug + 'static,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Downcast for T where
T: Any, [src]
T: Any,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>[src]
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>[src]
pub fn as_any(&self) -> &(dyn Any + 'static)[src]
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)[src]
impl<T> DowncastSync for T where
T: Send + Sync + Any, [src]
T: Send + Sync + Any,
impl<T> Erased for T
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,