Expand description
A stupidly simple QR code renderer, that prints text as QR code to the terminal, and nothing else.
§Examples
qr2term::print_qr("https://rust-lang.org/").unwrap();
§Based on
This library is based on qair,
which didn’t provide the renderer as a library on it’s own.
Credits for the actual renderer go to it’s developer.
Modules§
Enums§
- QrError
QrErrorencodes the error encountered when generating a QR code.
Functions§
- generate_
qr_ string - Generate
Stringfrom the givendataas QR code. - print_
qr - Print the given
dataas QR code in the terminal.