Browse Source

aya: make HashMap::new private

Alessandro Decina 4 years ago
parent
commit
e28da8812e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      aya/src/maps/hash_map.rs

+ 1 - 1
aya/src/maps/hash_map.rs

@@ -23,7 +23,7 @@ pub struct HashMap<T: Deref<Target = Map>, K, V> {
 }
 
 impl<T: Deref<Target = Map>, K: Pod, V: Pod> HashMap<T, K, V> {
-    pub fn new(map: T) -> Result<HashMap<T, K, V>, MapError> {
+    pub(crate) fn new(map: T) -> Result<HashMap<T, K, V>, MapError> {
         let map_type = map.obj.def.map_type;
 
         // validate the map definition