[][src]Struct count_cache::CountCache

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

Methods

impl<K, V> CountCache<K, V> where
    K: Clone + Eq + Hash,
    V: Clone
[src]

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

pub fn insert(&mut self, key: K, value: V, count: usize)[src]

pub fn increment(&mut self, key: &K, by: usize)[src]

pub fn contains_key(&mut self, key: &K) -> bool[src]

pub fn get(&mut self, key: &K) -> Result<V, ()>[src]

Auto Trait Implementations

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

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

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]