pub type StringOrVecParser<T, E> = dyn FnMut(&str) -> Result<T, E>;
A functor returning a Result of parsing a string into a vector of objects of type T.
Result
T