typedcache 0.2.1

Concurrent-safe typedcache with expiration capabilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Typed key-value expression, borrowed from [typedmap](https://github.com/kodieg/typedmap).

pub mod dynhash;
pub mod typedkey;
pub mod typedvalue;

use std::hash::Hash;

pub trait TypedMap: Eq + Hash {
    type Value: 'static;
}