qr-code-styling 0.1.1

Styled QR code generation with customizable dots, corners, gradients, and logo embedding
Documentation
//! Type definitions for QR code styling.

mod dot_type;
mod corner_dot_type;
mod corner_square_type;
mod gradient_type;
mod output_format;
mod shape_type;
mod error_correction;
mod mode;

pub use dot_type::DotType;
pub use corner_dot_type::CornerDotType;
pub use corner_square_type::CornerSquareType;
pub use gradient_type::GradientType;
pub use output_format::OutputFormat;
pub use shape_type::ShapeType;
pub use error_correction::ErrorCorrectionLevel;
pub use mode::Mode;