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