Creates a new object storage
()
| 103 | impl ObjectStorage { |
| 104 | /// Creates a new object storage |
| 105 | pub fn new() -> Self { |
| 106 | ObjectStorage(std::collections::HashMap::new()) |
| 107 | } |
| 108 | } |
| 109 | impl Default for ObjectStorage { |
| 110 | fn default() -> Self { |
nothing calls this directly
no test coverage detected