composable_indexes/index/im/
keys.rs

1use crate::index;
2
3/// An alias to KeysIndex with an immutable backing store.
4pub type Keys = index::Keys<index::generic::DefaultImmutableKeySet>;
5
6impl Keys {
7    pub fn new_immutable() -> Self {
8        Self::default()
9    }
10}