Expand description
This module provides utilities for byte-level iteration and related functionality.
It re-exports the basics and iterator modules for use in parsing or reading byte streams.
Structs§
- Byte
Iterator - An iterator over bytes from a reader source with support for peeking, consuming, and error reporting.
Functions§
- parse_
array_ entries - Iterate over JSON array entries, collecting the results from
parse_value. - parse_
number_ as - Parse a JSON number and convert it to a concrete type
R. - parse_
number_ as_ string - Parse a JSON number and return its textual representation.
- parse_
object_ entries - Iterate over JSON object entries, invoking
parse_valuefor each key. - parse_
quoted_ json_ string - Parse a JSON quoted string literal and return it as
String. - parse_
tag - Match a fixed ASCII tag at the current iterator position.