| bstr.rs |
|
12718 |
| bytes.rs |
|
13630 |
| locating.rs |
|
8017 |
| mod.rs |
Stream capability for combinators to parse
Stream types include:
- `&[u8]` and [`Bytes`] for binary data
- `&str` (aliased as [`Str`]) and [`BStr`] for UTF-8 data
- [`LocatingSlice`] can track the location within the original buffer to report
[spans][crate::Parser::with_span]
- [`Stateful`] to thread global state through your parsers
- [`Partial`] can mark an input as partial buffer that is being streamed into
- [Custom stream types][crate::_topic::stream] |
60871 |
| partial.rs |
|
9517 |
| range.rs |
|
4643 |
| recoverable.rs |
|
7842 |
| stateful.rs |
|
7335 |
| tests.rs |
|
7534 |
| token.rs |
|
8143 |