reflectapi 0.16.10

ReflectAPI is a library for Rust code-first web service API declaration and corresponding clients code generation tools.
Documentation
1
2
3
4
5
6
7
#[derive(Debug, PartialEq, Eq)]
pub struct IndexMap<K, V> {
    _k: std::marker::PhantomData<K>,
    _v: std::marker::PhantomData<V>,
}

pub type IndexSet<T> = IndexMap<T, ()>;