pub struct ThreadSafeFileStoreSerializable<K, V> { /* private fields */ }
Expand description
Thread safe store based on files with serialization
Implementations§
Source§impl<K: CustomHash, V> ThreadSafeFileStoreSerializable<K, V>
impl<K: CustomHash, V> ThreadSafeFileStoreSerializable<K, V>
Trait Implementations§
Source§impl<'lock, K: Clone + Hash + Eq + CustomHash, V: Clone + Serialize + DeserializeOwned> ThreadSafeTryCacheStore<'lock> for ThreadSafeFileStoreSerializable<K, V>where
Self: 'lock,
impl<'lock, K: Clone + Hash + Eq + CustomHash, V: Clone + Serialize + DeserializeOwned> ThreadSafeTryCacheStore<'lock> for ThreadSafeFileStoreSerializable<K, V>where
Self: 'lock,
type Key = K
type Value = V
type Error = ThreadSafeFileStoreError
Source§type SLock<'guard> = RwLockAnyGuardKey<'lock, 'guard, (), K>
where
'lock: 'guard
type SLock<'guard> = RwLockAnyGuardKey<'lock, 'guard, (), K> where 'lock: 'guard
Shared lock over a key, must be possible to make one by borrowing a exclusive lock.
Source§fn ts_try_get(
&'lock self,
handle: &Self::SLock<'_>,
) -> Result<Option<Self::Value>, Self::Error>
fn ts_try_get( &'lock 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(
&'lock self,
handle: &mut Self::XLock,
value: &Self::Value,
) -> Result<(), Self::Error>
fn ts_try_set( &'lock self, handle: &mut Self::XLock, value: &Self::Value, ) -> Result<(), Self::Error>
Attempts to set a value given its key.
Source§fn ts_try_exists(
&'lock self,
handle: &Self::SLock<'_>,
) -> Result<bool, Self::Error>
fn ts_try_exists( &'lock self, handle: &Self::SLock<'_>, ) -> Result<bool, Self::Error>
Attempts to check if the cache key entry exists.
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(
&'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_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_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_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<K, V> !Freeze for ThreadSafeFileStoreSerializable<K, V>
impl<K, V> RefUnwindSafe for ThreadSafeFileStoreSerializable<K, V>where
V: RefUnwindSafe,
impl<K, V> Send for ThreadSafeFileStoreSerializable<K, V>
impl<K, V> Sync for ThreadSafeFileStoreSerializable<K, V>
impl<K, V> Unpin for ThreadSafeFileStoreSerializable<K, V>
impl<K, V> UnwindSafe for ThreadSafeFileStoreSerializable<K, V>where
V: UnwindSafe,
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