Module text
Source pub use unicode::*;
- ascii
- unicode
- Parsers and utilities for working with unicode inputs.
- Padded
- Char
- A trait implemented by textual character types (currently,
u8 and char).
- cr
- Parses an OSX(MacOS)-style newline. (\r)
- crlf
- Parses a DOS(Windows)-style newline. (\r\n)
- digits
- A parser that accepts one or more ASCII digits.
- inline_whitespace
- A parser that accepts (and ignores) any number of inline whitespace characters.
- int
- Parses a non-negative integer in the specified radix.
- just_ignore_case
- Parses a sequence of characters, ignoring the character’s case.
- lf
- Parses a unix-style newline. (\n)
- newline
- A parser that accepts (and ignores) any newline characters or character sequences.
- padded
- A parser that accepts and ignores any number of whitespace characters before or after another parser.
- whitespace
- A parser that accepts (and ignores) any number of whitespace characters.