pub trait MultipleBarcodeReader {
    // Required methods
    fn decode_multiple<B: Binarizer>(
        &mut self,
        image: &mut BinaryBitmap<B>
    ) -> Result<Vec<RXingResult>>;
    fn decode_multiple_with_hints<B: Binarizer>(
        &mut self,
        image: &mut BinaryBitmap<B>,
        hints: &DecodingHintDictionary
    ) -> Result<Vec<RXingResult>>;
}
Expand description

Implementation of this interface attempt to read several barcodes from one image.

@see com.google.zxing.Reader @author Sean Owen

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§