Function mz_repr::strconv::parse_list
source ยท pub fn parse_list<'a, T, E>(
s: &'a str,
is_element_type_list: bool,
make_null: impl FnMut() -> T,
gen_elem: impl FnMut(Cow<'a, str>) -> Result<T, E>,
) -> Result<Vec<T>, ParseError>where
E: ToString,