Skip to main content

qr_code_styling/types/
mod.rs

1//! Type definitions for QR code styling.
2
3mod dot_type;
4mod corner_dot_type;
5mod corner_square_type;
6mod gradient_type;
7mod output_format;
8mod shape_type;
9mod error_correction;
10mod mode;
11
12pub use dot_type::DotType;
13pub use corner_dot_type::CornerDotType;
14pub use corner_square_type::CornerSquareType;
15pub use gradient_type::GradientType;
16pub use output_format::OutputFormat;
17pub use shape_type::ShapeType;
18pub use error_correction::ErrorCorrectionLevel;
19pub use mode::Mode;