[−][src]Struct dyn_cache::CacheMiss
The result of a failed attempt to retrieve a value from the cache.
Initialize a full CacheEntry for storage with CacheMiss::init.
use dyn_cache::local::LocalCache; let mut cache = LocalCache::default(); let (scope, arg) = (&'a', &1); let miss = cache.get(scope, arg).expect_err("first access will always be a miss");
Implementations
impl<'k, Key: ?Sized, Scope, Input, Output, H> CacheMiss<'k, Key, Scope, Input, Output, H>[src]
pub fn init<R>(
self,
query: impl FnOnce(&Input) -> (Output, R)
) -> (CacheEntry<'k, Key, Scope, Input, Output, H>, R)[src]
self,
query: impl FnOnce(&Input) -> (Output, R)
) -> (CacheEntry<'k, Key, Scope, Input, Output, H>, R)
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.
let (entry, result): (_, Vec<usize>) = miss.init(|&n| { let v: Vec<usize> = vec![n; n]; (v.clone(), v) }); cache.store(entry); assert_eq!(result, vec![1usize]);
Trait Implementations
impl<'k, Key: Clone + ?Sized, Scope: Clone, Input: Clone, Output: Clone, H: Clone> Clone for CacheMiss<'k, Key, Scope, Input, Output, H>[src]
pub fn clone(&self) -> CacheMiss<'k, Key, Scope, Input, Output, H>[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<'k, Key: ?Sized, Scope, Input, Output, H> Debug for CacheMiss<'k, Key, Scope, Input, Output, H> where
Key: Debug,
Scope: Debug,
Input: Debug, [src]
Key: Debug,
Scope: Debug,
Input: Debug,
impl<'k, Key: Eq + ?Sized, Scope: Eq, Input: Eq, Output: Eq, H: Eq> Eq for CacheMiss<'k, Key, Scope, Input, Output, H>[src]
impl<'k, Key: PartialEq + ?Sized, Scope: PartialEq, Input: PartialEq, Output: PartialEq, H: PartialEq> PartialEq<CacheMiss<'k, Key, Scope, Input, Output, H>> for CacheMiss<'k, Key, Scope, Input, Output, H>[src]
pub fn eq(&self, other: &CacheMiss<'k, Key, Scope, Input, Output, H>) -> bool[src]
pub fn ne(&self, other: &CacheMiss<'k, Key, Scope, Input, Output, H>) -> bool[src]
impl<'k, Key: ?Sized, Scope, Input, Output, H> StructuralEq for CacheMiss<'k, Key, Scope, Input, Output, H>[src]
impl<'k, Key: ?Sized, Scope, Input, Output, H> StructuralPartialEq for CacheMiss<'k, Key, Scope, Input, Output, H>[src]
Auto Trait Implementations
impl<'k, Key, Scope, Input, Output, H = RandomState> !RefUnwindSafe for CacheMiss<'k, Key, Scope, Input, Output, H>[src]
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, [src]
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, [src]
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, [src]
H: Unpin,
Input: Unpin,
Output: Unpin,
Scope: Unpin,
impl<'k, Key, Scope, Input, Output, H = RandomState> !UnwindSafe for CacheMiss<'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>,