add MultiUseMuliFormatReader

This should avoid the issues with frequent reuse of the generic version of the library. It has a much larger upfront cost, so it should only be used if the reader will be used multiple times. The helper functions do not use this reader.

Fixes: #23
This commit is contained in:
Henry Schimke
2023-03-04 14:34:09 -06:00
parent 34720a184b
commit 1c286fc6ae
2 changed files with 238 additions and 0 deletions

View File

@@ -89,6 +89,8 @@ pub mod pdf417;
mod multi_format_writer;
pub use multi_format_writer::*;
mod multi_use_multi_format_reader;
pub use multi_use_multi_format_reader::*;
mod multi_format_reader;
pub use multi_format_reader::*;