zedbar 0.2.5

Pure Rust barcode and QR code scanning library supporting multiple formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Barcode decoder implementations
//!
//! This module contains individual decoder implementations for various barcode formats.

#[cfg(feature = "codabar")]
pub(crate) mod codabar;
#[cfg(feature = "code128")]
pub(crate) mod code128;
#[cfg(feature = "code39")]
pub(crate) mod code39;
#[cfg(feature = "code93")]
pub(crate) mod code93;
#[cfg(feature = "databar")]
pub(crate) mod databar;
#[cfg(feature = "ean")]
pub(crate) mod ean;
#[cfg(feature = "i25")]
pub(crate) mod i25;