Function parse_ascii_whitespace

Source
pub fn parse_ascii_whitespace<In: Input, Reason>(
    input: In,
) -> ParsingResult<In, In, Reason>
Expand description

Parses a sequence of ASCII whitespace. See char::is_ascii_whitespace for the definition of that.

§Errors

Never returns an error. If there’s no whitespace at tbe start of the input, the returned string is empty.