Expand description
Content parsing for QR payloads.
Parsers that turn a decoded QR payload (the raw bytes a scanner recovers)
back into structured values. These are the symmetric decode-side counterpart
to the qrcode-rs facade’s QrCode::for_wifi, QrCode::for_vcard, and
QrCode::for_gs1 constructors, which encode in the opposite direction.
Encoding is one-way: a QR code symbol does not retain its input payload, so
these parsers operate on a &str/&[u8] the caller supplies.
Modules§
- gs1
- GS1 application-identifier (AI) parsing.
- vcard
- vCard (
.vcf) parsing and encoding. - wifi
- WiFi configuration (
WIFI:) parsing and encoding.
Enums§
- Parse
Error - Errors returned by the content parsers in this module.