typemap_rev 0.1.0

A hashmap, but stores types as keys
Documentation

TypeMap Revitalized

An updated version of the crate typemap which is a hashmap whose keys are defined by types.

Original code created by: Acdenissk

Crate created by: kingbri

Documentation

There is currently no hosted documentation for this crate. Clone this repository and run cargo doc --open and it will pull up documentation for this crate.

Example

extern crate typemap_rev;
use typemap_rev::{TypeMap, TypeMapKey};

struct Number;

impl TypeMapKey for Number {
    type Value = i32;
}

let mut map = TypeMap::new();
map.insert::<Number>(42);

Help/Support

Join the Serenity-rs Discord server here: https://discord.gg/9X7vCus and feel free to ask your questions!