[][src]Struct cached::stores::UnboundCache

pub struct UnboundCache<K, V> { /* fields omitted */ }

Default unbounded cache

This cache has no size limit or eviction policy.

Note: This cache is in-memory only

Methods

impl<K: Hash + Eq, V> UnboundCache<K, V>[src]

pub fn new() -> UnboundCache<K, V>[src]

Creates an empty UnboundCache

pub fn with_capacity(size: usize) -> UnboundCache<K, V>[src]

Creates an empty UnboundCache with a given pre-allocated capacity

Trait Implementations

impl<K: Hash + Eq, V> Cached<K, V> for UnboundCache<K, V>[src]

Auto Trait Implementations

impl<K, V> Send for UnboundCache<K, V> where
    K: Send,
    V: Send

impl<K, V> Sync for UnboundCache<K, V> where
    K: Sync,
    V: Sync

impl<K, V> Unpin for UnboundCache<K, V> where
    K: Unpin,
    V: Unpin

impl<K, V> UnwindSafe for UnboundCache<K, V> where
    K: UnwindSafe,
    V: UnwindSafe

impl<K, V> RefUnwindSafe for UnboundCache<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]