19 unstable releases (3 breaking)

Uses old Rust 2015

0.3.3 Jun 12, 2015
0.3.0 Apr 25, 2015
0.0.12 Mar 30, 2015
0.0.5 Dec 23, 2014
0.0.4 Nov 28, 2014

#7 in #keyed

Download history 16466/week @ 2024-11-15 17716/week @ 2024-11-22 16023/week @ 2024-11-29 16102/week @ 2024-12-06 18499/week @ 2024-12-13 11786/week @ 2024-12-20 10332/week @ 2024-12-27 17899/week @ 2025-01-03 20778/week @ 2025-01-10 18771/week @ 2025-01-17 18196/week @ 2025-01-24 23092/week @ 2025-01-31 17153/week @ 2025-02-07 6910/week @ 2025-02-14 7786/week @ 2025-02-21 5480/week @ 2025-02-28

41,131 downloads per month
Used in 254 crates (51 directly)

MIT license

17KB
326 lines

TypeMap

A typesafe store keyed by types and containing different types of values.

It provides functionality similar to AnyMap, but is more flexible because it allows for key-value pairs, rather than enforcing that keys and values are the same type.

Key-value associations are defined through the Key trait, which uses an associated type parameter and trait coherence rules to enforce the invariants of TypeMap.

Example

#[deriving(Show, PartialEq)]
struct KeyType;

#[deriving(Show, PartialEq)]
struct Value(i32);

impl Key for KeyType { type Value = Value; }

#[test] fn test_pairing() {
    let mut map = TypeMap::new();
    map.insert::<KeyType>(Value(12));
    assert_eq!(*map.find::<KeyType>().unwrap(), Value(12);
}

lib.rs:

A type-based key value store where one value type is allowed for each key.

Dependencies

~14KB