Type Alias NumParser

Source
type NumParser<'a> = Box<dyn Fn(&str) -> Option<f64> + 'a>;

Aliased Typeยง

struct NumParser<'a>(/* private fields */);