-pub struct RawAnyMap {
- inner: HashMap<TypeId, Box<Any>, TypeIdState>,
+pub struct RawMap<A: ?Sized + UncheckedAnyExt = Any> {
+ #[cfg(feature = "nightly")]
+ inner: HashMap<TypeId, Box<A>, TypeIdState>,
+
+ #[cfg(not(feature = "nightly"))]
+ inner: HashMap<TypeId, Box<A>>,