use hashbrown::{HashMap, HashSet}; use nohash_hasher::BuildNoHashHasher; use std::any::Any; #[derive(Default)] pub struct StateRepo { state: HashMap, BuildNoHashHasher>, active_ids: HashSet> }