pub fn decode<Context, D, K, V, S>( decoder: &mut D, ) -> Result<IndexMap<K, V, S>, DecodeError>where D: Decoder<Context = Context>, K: Decode<Context> + Eq + Hash, V: Decode<Context>, S: BuildHasher + Default,