Function repr::strconv::parse_map_inner[][src]

fn parse_map_inner<'a, V, E>(
    s: &'a str,
    is_value_type_map: bool,
    gen_elem: impl FnMut(Cow<'a, str>) -> Result<V, E>
) -> Result<BTreeMap<String, V>, String> where
    E: Display