(name: &str)
| 25 | |
| 26 | impl CollectionNameKey { |
| 27 | pub fn new(name: &str) -> Self { |
| 28 | let mut hasher = DefaultHasher::new(); |
| 29 | name.hash(&mut hasher); |
| 30 | Self(hasher.finish()) |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | impl From<u64> for CollectionNameKey { |
nothing calls this directly
no test coverage detected