1 2 3 4 5
fn separator<S, U: Parsable>() -> impl Parser<S, U> { // 1 2 // ┃ ┠───────────┬──────────┐ move |state: S, input: U| take_all((line_space(), is('='), line_space())).parse(state, input) }