Expand description
Types and constructors for various runtime scanners.
Structs§
- Exact
Width - Runtime scanner that forces exactly
width
bytes to be consumed. - MaxWidth
- Runtime scanner that forces at most
width
bytes to be consumed. - MinWidth
- Runtime scanner that forces at least
width
bytes to be consumed. - ScanA
- Runtime scanner that delegates to a static scanner.
Functions§
- exact_
width - Creates a runtime scanner that forces exactly
width
bytes to be consumed. - exact_
width_ a - Creates a runtime scanner that forces exactly
width
bytes to be consumed by the static scannerS
. - max_
width - Creates a runtime scanner that forces at most
width
bytes to be consumed. - max_
width_ a - Creates a runtime scanner that forces at most
width
bytes to be consumed by the static scannerS
. - min_
width - Creates a runtime scanner that forces at least
width
bytes to be consumed. - min_
width_ a - Creates a runtime scanner that forces at least
width
bytes to be consumed by the static scannerS
. - scan_a
- Returns a runtime scanner that delegates to a static scanner.