remove doc test for helpers (for now)

This commit is contained in:
Henry Schimke
2023-01-05 11:41:02 -06:00
parent 2f429a1617
commit 6c0db8b7d2

View File

@@ -1,19 +1,3 @@
/// helper functions for common decode scenarios
/// ## Eample
/// ```
/// use rxing;
///
/// fn main() {
/// let file_name = "test_image.jpg";
///
/// let results = rxing::helpers::detect_multiple_in_file(file_name).expect("decodes");
///
/// for result in results {
/// println!("{} -> {}", result.getBarcodeFormat(), result.getText())
/// }
/// }
/// ```
use std::{
collections::{HashMap, HashSet},
rc::Rc,