1 2 3
fn bad_line_space<S, U: Parsable>() -> impl Parser<S, U> { move |state: S, input: U| take(0.., is(one_of(" \t"))).parse(state, input) }