Function mz_repr::strconv::parse_map_inner
source ยท fn parse_map_inner<'a, V, E>(
s: &'a str,
is_value_type_map: bool,
gen_elem: impl FnMut(Option<Cow<'a, str>>) -> Result<V, E>,
) -> Result<BTreeMap<String, V>, String>where
E: ToString,