pub type StringOrVecParser<T, E> = dyn FnMut(&str) -> Result<T, E>;
Expand description

A functor returning a Result of parsing a string into a vector of objects of type T.