tuv 0.1.0

Pure-Rust QR code encoder with SVG and PNG output
Documentation
1
2
3
4
5
6
7
8
9
10
//! Encoder module — handles mode selection and data encoding.

pub mod bits;
pub mod mode;
pub mod numeric;
pub mod alphanumeric;
pub mod byte;
pub mod padding;

pub use mode::{Mode, Encoder, char_count_bits, best_mode, estimated_bit_length, EncodeBits};