Function mz_repr::strconv::parse_legacy_vector

source ·
pub fn parse_legacy_vector<'a, T, E>(
    s: &'a str,
    gen_elem: impl FnMut(Cow<'a, str>) -> Result<T, E>
) -> Result<Vec<T>, ParseError>
where E: ToString,