| bstr.rs |
|
12620 |
- |
| bytes.rs |
|
13542 |
- |
| locating.rs |
|
7812 |
- |
| 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] |
54663 |
- |
| partial.rs |
|
9501 |
- |
| range.rs |
|
4404 |
- |
| recoverable.rs |
|
7717 |
- |
| stateful.rs |
|
7117 |
- |
| tests.rs |
|
4562 |
- |
| token.rs |
|
7883 |
- |