ezcache

Struct TryCacheStoreErrorMap

Source
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>

Source

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>

Source§

fn from(value: T) -> Self

Converts to this type from the input type.
Source§

impl<K, V, E, ET: From<E>, S: TryCacheStore<Key = K, Value = V, Error = E>> TryCacheStore for TryCacheStoreErrorMap<K, V, E, ET, S>

Source§

type Key = K

Source§

type Value = V

Source§

type Error = ET

Source§

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
Source§

fn try_set( &mut self, key: impl Borrow<Self::Key>, value: impl Borrow<Self::Value>, ) -> Result<(), Self::Error>

Attempts to set a value given its key.
Source§

fn try_exists(&self, key: impl Borrow<Self::Key>) -> Result<bool, Self::Error>

Attempts to check if the cache key entry exists.

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>

§

impl<K, V, E, ET, S> Send for TryCacheStoreErrorMap<K, V, E, ET, S>
where S: Send, ET: Send,

§

impl<K, V, E, ET, S> Sync for TryCacheStoreErrorMap<K, V, E, ET, S>
where S: Sync, ET: Sync,

§

impl<K, V, E, ET, S> Unpin for TryCacheStoreErrorMap<K, V, E, ET, S>
where S: Unpin, ET: Unpin,

§

impl<K, V, E, ET, S> UnwindSafe for TryCacheStoreErrorMap<K, V, E, ET, S>
where S: UnwindSafe, ET: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.