pub struct TryCacheStoreErrorMap<K, V, E, ET, S: TryCacheStore<Key = K, Value = V, Error = E>> {
pub store: S,
/* private fields */
}
Expand description
Struct to convert the error type of a TryCacheStore
into another
Fields§
§store: S
Implementations§
Source§impl<K, V, E, ET: From<E>, S: TryCacheStore<Key = K, Value = V, Error = E>> TryCacheStoreErrorMap<K, V, E, ET, S>
impl<K, V, E, ET: From<E>, S: TryCacheStore<Key = K, Value = V, Error = E>> TryCacheStoreErrorMap<K, V, E, ET, S>
pub fn from_store(store: S) -> Self
Trait Implementations§
Source§impl<K, V, E, ET: From<E>, T: TryCacheStore<Key = K, Value = V, Error = E>> From<T> for TryCacheStoreErrorMap<K, V, E, ET, T>
impl<K, V, E, ET: From<E>, T: TryCacheStore<Key = K, Value = V, Error = E>> From<T> for TryCacheStoreErrorMap<K, V, E, ET, T>
Source§impl<K, V, E, ET: From<E>, S: TryCacheStore<Key = K, Value = V, Error = E>> TryCacheStore for TryCacheStoreErrorMap<K, V, E, ET, S>
impl<K, V, E, ET: From<E>, S: TryCacheStore<Key = K, Value = V, Error = E>> TryCacheStore for TryCacheStoreErrorMap<K, V, E, ET, S>
type Key = K
type Value = V
type Error = ET
Source§fn try_get(
&self,
key: impl Borrow<Self::Key>,
) -> Result<Option<Self::Value>, Self::Error>
fn try_get( &self, key: impl Borrow<Self::Key>, ) -> Result<Option<Self::Value>, Self::Error>
Attempts to return an option of the owned cache element if present
Auto Trait Implementations§
impl<K, V, E, ET, S> Freeze for TryCacheStoreErrorMap<K, V, E, ET, S>where
S: Freeze,
impl<K, V, E, ET, S> RefUnwindSafe for TryCacheStoreErrorMap<K, V, E, ET, S>where
S: RefUnwindSafe,
ET: RefUnwindSafe,
impl<K, V, E, ET, S> Send for TryCacheStoreErrorMap<K, V, E, ET, S>
impl<K, V, E, ET, S> Sync for TryCacheStoreErrorMap<K, V, E, ET, S>
impl<K, V, E, ET, S> Unpin for TryCacheStoreErrorMap<K, V, E, ET, S>
impl<K, V, E, ET, S> UnwindSafe for TryCacheStoreErrorMap<K, V, E, ET, S>where
S: UnwindSafe,
ET: 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