cog_schemars/json_schema_impls/
indexmap2.rs

1use crate::JsonSchema;
2use alloc::collections::{BTreeMap, BTreeSet};
3use indexmap2::{IndexMap, IndexSet};
4
5forward_impl!((<K: JsonSchema, V: JsonSchema, H> JsonSchema for IndexMap<K, V, H>) => BTreeMap<K, V>);
6forward_impl!((<T: JsonSchema, H> JsonSchema for IndexSet<T, H>) => BTreeSet<T>);