mirror of
https://github.com/guilhermewerner/reflection
synced 2025-06-16 05:34:17 +00:00
8 lines
133 B
Rust
8 lines
133 B
Rust
use std::any::TypeId;
|
|
use std::collections::HashMap;
|
|
|
|
#[derive(Default)]
|
|
pub struct TypeRegistry {
|
|
types: HashMap<TypeId, ()>,
|
|
}
|