Trait chumsky::text::TextParser[][src]

pub trait TextParser<O>: Parser<char, O> {
    fn padded(self) -> Padded<Self, O>
    where
        Self: Sized
, { ... } }
Expand description

A trait containing text-specific functionality that extends the Parser trait.

Provided methods

Parse a pattern, allowing whitespace both before and after.

Implementors