pub struct DumbTryThreadSafeWrapper<'a, K, V, E, S: TryCacheStore<Key = K, Value = V, Error = E>> {
pub store: RwLock<S>,
/* private fields */
}
Expand description
A thread safe wrapper around a normal non-thread safe TryCacheStore
Fields§
§store: RwLock<S>
Implementations§
Source§impl<K, V, E, S: TryCacheStore<Key = K, Value = V, Error = E>> DumbTryThreadSafeWrapper<'_, K, V, E, S>
impl<K, V, E, S: TryCacheStore<Key = K, Value = V, Error = E>> DumbTryThreadSafeWrapper<'_, K, V, E, S>
Trait Implementations§
Source§impl<'lock, K, V, E, S> ThreadSafeTryCacheStore<'lock> for DumbTryThreadSafeWrapper<'lock, K, V, E, S>where
Self: 'lock,
S: TryCacheStore<Key = K, Value = V, Error = E> + 'lock,
E: From<PoisonError<RwLockReadGuard<'lock, S>>> + From<PoisonError<RwLockWriteGuard<'lock, S>>> + From<TryLockError<RwLockReadGuard<'lock, S>>> + From<TryLockError<RwLockWriteGuard<'lock, S>>>,
impl<'lock, K, V, E, S> ThreadSafeTryCacheStore<'lock> for DumbTryThreadSafeWrapper<'lock, K, V, E, S>where
Self: 'lock,
S: TryCacheStore<Key = K, Value = V, Error = E> + 'lock,
E: From<PoisonError<RwLockReadGuard<'lock, S>>> + From<PoisonError<RwLockWriteGuard<'lock, S>>> + From<TryLockError<RwLockReadGuard<'lock, S>>> + From<TryLockError<RwLockWriteGuard<'lock, S>>>,
type Key = K
type Value = V
Source§type SLock<'guard> = RwLockAnyGuardKey<'lock, 'guard, S, <DumbTryThreadSafeWrapper<'lock, K, V, E, S> as ThreadSafeTryCacheStore<'lock>>::Key>
where
'lock: 'guard
type SLock<'guard> = RwLockAnyGuardKey<'lock, 'guard, S, <DumbTryThreadSafeWrapper<'lock, K, V, E, S> as ThreadSafeTryCacheStore<'lock>>::Key> where 'lock: 'guard
Shared lock over a key, must be possible to make one by borrowing a exclusive lock.
Source§type XLock = (RwLockWriteGuard<'lock, S>, &'lock <DumbTryThreadSafeWrapper<'lock, K, V, E, S> as ThreadSafeTryCacheStore<'lock>>::Key)
type XLock = (RwLockWriteGuard<'lock, S>, &'lock <DumbTryThreadSafeWrapper<'lock, K, V, E, S> as ThreadSafeTryCacheStore<'lock>>::Key)
Exclusive lock over a wey.
type Error = E
Source§fn ts_try_get(
&self,
handle: &Self::SLock<'_>,
) -> Result<Option<Self::Value>, Self::Error>
fn ts_try_get( &self, handle: &Self::SLock<'_>, ) -> Result<Option<Self::Value>, Self::Error>
Attempts to return an option of the owned cache element if present.
Source§fn ts_try_set(
&self,
handle: &mut Self::XLock,
value: &Self::Value,
) -> Result<(), Self::Error>
fn ts_try_set( &self, handle: &mut Self::XLock, value: &Self::Value, ) -> Result<(), Self::Error>
Attempts to set a value given its key.
Source§fn ts_try_exists(&self, handle: &Self::SLock<'_>) -> Result<bool, Self::Error>
fn ts_try_exists(&self, handle: &Self::SLock<'_>) -> Result<bool, Self::Error>
Attempts to check if the cache key entry exists.
Source§fn ts_try_slock(
&'lock self,
key: &'lock Self::Key,
) -> Result<Self::SLock<'lock>, Self::Error>
fn ts_try_slock( &'lock self, key: &'lock Self::Key, ) -> Result<Self::SLock<'lock>, Self::Error>
Attempt to acquire a shared lock of a key until the handle is dropped.
Source§fn ts_try_xlock(
&'lock self,
key: &'lock Self::Key,
) -> Result<Self::XLock, Self::Error>
fn ts_try_xlock( &'lock self, key: &'lock Self::Key, ) -> Result<Self::XLock, Self::Error>
Attempt to exclusively lock a key until the handle is dropped.
Source§fn ts_try_slock_nblock(
&'lock self,
key: &'lock Self::Key,
) -> Result<Self::SLock<'lock>, Self::Error>
fn ts_try_slock_nblock( &'lock self, key: &'lock Self::Key, ) -> Result<Self::SLock<'lock>, Self::Error>
Attempt to acquire a shared lock of a key until the handle is dropped. Non block.
Source§fn ts_try_xlock_nblock(
&'lock self,
key: &'lock Self::Key,
) -> Result<Self::XLock, Self::Error>
fn ts_try_xlock_nblock( &'lock self, key: &'lock Self::Key, ) -> Result<Self::XLock, Self::Error>
Attempt to exclusively lock a key until the handle is dropped. Non block.
Source§fn ts_one_try_get(
&'lock self,
key: &'lock Self::Key,
) -> Result<Option<Self::Value>, Self::Error>
fn ts_one_try_get( &'lock self, key: &'lock Self::Key, ) -> Result<Option<Self::Value>, Self::Error>
Same as
ts_get
but it performs a one-time lockAuto Trait Implementations§
impl<'a, K, V, E, S> !Freeze for DumbTryThreadSafeWrapper<'a, K, V, E, S>
impl<'a, K, V, E, S> RefUnwindSafe for DumbTryThreadSafeWrapper<'a, K, V, E, S>
impl<'a, K, V, E, S> Send for DumbTryThreadSafeWrapper<'a, K, V, E, S>where
S: Send,
impl<'a, K, V, E, S> Sync for DumbTryThreadSafeWrapper<'a, K, V, E, S>
impl<'a, K, V, E, S> Unpin for DumbTryThreadSafeWrapper<'a, K, V, E, S>where
S: Unpin,
impl<'a, K, V, E, S> UnwindSafe for DumbTryThreadSafeWrapper<'a, K, V, E, S>
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