Crates.io | ttmap |
lib.rs | ttmap |
version | 0.3.0 |
source | src |
created_at | 2020-01-18 11:56:57.705353 |
updated_at | 2023-11-24 07:13:20.827318 |
description | Trivial implementation of type map |
homepage | |
repository | https://github.com/DoumanAsh/type-map |
max_upload_size | |
id | 199701 |
size | 16,095 |
Trivial type-map implementation
Implementation uses type erased values with type as index.
Due to limitation of TypeId
only types without non-static references are supported. (in future it can be changed)
Each inserted value is stored on heap, with type erased pointer, using type as key. When value is retrieved, type information is used as key and pointer is casted to corresponding the type. This is safe, because Rust allows cast back and forth between pointers as long as the pointer actually points to the type (which is the case).
Static references are allowed, but in current implementation are stored on heap. It might be changed in future.
The map uses simplified Hasher
that relies on fact that TypeId
produces unique values only.
In fact there is no hashing under hood, and type's id is returned as it is.
alloc
with enabled global allocator