More documentation tweaks to clarify and explain
[anymap] / src / raw.rs
index 73c20e21119906cb9578f3c5d798152eb9cd4a47..5720086660475c7e687ae14da15ef1e722544866 100644 (file)
@@ -2,7 +2,7 @@
 //!
 //! All relevant details are in the `RawMap` struct.
 
-use std::any::TypeId;
+use std::any::{Any, TypeId};
 use std::borrow::Borrow;
 use std::collections::hash_map::{self, HashMap};
 use std::convert::TryInto;
@@ -12,7 +12,7 @@ use std::hash::{Hasher, BuildHasherDefault};
 use std::mem;
 use std::ops::{Index, IndexMut};
 
-use any::{Any, UncheckedAnyExt};
+use any::UncheckedAnyExt;
 
 #[derive(Default)]
 struct TypeIdHasher {