| Crates.io | xgx_intern |
| lib.rs | xgx_intern |
| version | 0.3.0 |
| created_at | 2025-09-02 21:09:44.612086+00 |
| updated_at | 2025-09-03 15:37:59.79466+00 |
| description | A simple Hash trait interner for rust. |
| homepage | |
| repository | https://github.com/xangelix/xgx_intern |
| max_upload_size | |
| id | 1821638 |
| size | 24,711 |
A simple Hash trait interner for rust.
Anything that supports the Eq and Hash rust std traits.
Anything that can be converted into a usize. At the time of writing that is:
u128
u64
u32
u16
u8
usize
i128
i64
i32
i16
i8
isize
Remember to choose a type appropriate for your system's architecture:
usize or isize if you require compatibility between architectures. (e.g. 64 bit server communicating with a 32 bit wasm client)