bstr.rs |
|
10742 |
bytes.rs |
|
11553 |
locating.rs |
|
7706 |
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] |
59035 |
partial.rs |
|
9517 |
range.rs |
|
4643 |
recoverable.rs |
|
7842 |
stateful.rs |
|
7193 |
tests.rs |
|
7534 |
token.rs |
|
7826 |