pub struct MemorixCacheItemNoKey<P, G, S, D, E> { /* private fields */ }
Implementations§
Source§impl<P: DeserializeOwned + Serialize, G, S, D, E> MemorixCacheItemNoKey<P, G, S, D, E>
impl<P: DeserializeOwned + Serialize, G, S, D, E> MemorixCacheItemNoKey<P, G, S, D, E>
Source§impl<P: DeserializeOwned + Serialize, G: CanCacheGet, S, D, E> MemorixCacheItemNoKey<P, G, S, D, E>
impl<P: DeserializeOwned + Serialize, G: CanCacheGet, S, D, E> MemorixCacheItemNoKey<P, G, S, D, E>
Source§impl<P: DeserializeOwned + Serialize, G, S: CanCacheSet, D, E> MemorixCacheItemNoKey<P, G, S, D, E>
impl<P: DeserializeOwned + Serialize, G, S: CanCacheSet, D, E> MemorixCacheItemNoKey<P, G, S, D, E>
Source§impl<P: DeserializeOwned + Serialize, G, S, D: CanCacheDelete, E> MemorixCacheItemNoKey<P, G, S, D, E>
impl<P: DeserializeOwned + Serialize, G, S, D: CanCacheDelete, E> MemorixCacheItemNoKey<P, G, S, D, E>
Trait Implementations§
Auto Trait Implementations§
impl<P, G, S, D, E> Freeze for MemorixCacheItemNoKey<P, G, S, D, E>
impl<P, G, S, D, E> RefUnwindSafe for MemorixCacheItemNoKey<P, G, S, D, E>
impl<P, G, S, D, E> Send for MemorixCacheItemNoKey<P, G, S, D, E>
impl<P, G, S, D, E> Sync for MemorixCacheItemNoKey<P, G, S, D, E>
impl<P, G, S, D, E> Unpin for MemorixCacheItemNoKey<P, G, S, D, E>
impl<P, G, S, D, E> UnwindSafe for MemorixCacheItemNoKey<P, G, S, D, E>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more