[−][src]Struct bardecoder::DecoderBuilder
Builder struct to create a Decoder
Required elements are:
- Prepare
- Detect
- Extract
- Decode
Methods
impl<IMG, PREPD> DecoderBuilder<IMG, PREPD>[src]
pub fn new() -> DecoderBuilder<IMG, PREPD>[src]
Constructor; all fields initialized as None
pub fn prepare(
&mut self,
prepare: Box<dyn Prepare<IMG, PREPD>>
) -> &mut DecoderBuilder<IMG, PREPD>[src]
&mut self,
prepare: Box<dyn Prepare<IMG, PREPD>>
) -> &mut DecoderBuilder<IMG, PREPD>
Set the prepare implementation for this Decoder
pub fn detect(
&mut self,
detect: Box<dyn Detect<PREPD>>
) -> &mut DecoderBuilder<IMG, PREPD>[src]
&mut self,
detect: Box<dyn Detect<PREPD>>
) -> &mut DecoderBuilder<IMG, PREPD>
Set the detect implementation for this Decoder
pub fn qr(
&mut self,
extract: Box<dyn Extract<PREPD, QRLocation, QRData, QRError>>,
decode: Box<dyn Decode<QRData, QRError>>
) -> &mut DecoderBuilder<IMG, PREPD>[src]
&mut self,
extract: Box<dyn Extract<PREPD, QRLocation, QRData, QRError>>,
decode: Box<dyn Decode<QRData, QRError>>
) -> &mut DecoderBuilder<IMG, PREPD>
Set the extact and decode implementations for this Decoder for QR codes
pub fn build(self) -> Decoder<IMG, PREPD>[src]
Auto Trait Implementations
impl<IMG, PREPD> !RefUnwindSafe for DecoderBuilder<IMG, PREPD>
impl<IMG, PREPD> !Send for DecoderBuilder<IMG, PREPD>
impl<IMG, PREPD> !Sync for DecoderBuilder<IMG, PREPD>
impl<IMG, PREPD> Unpin for DecoderBuilder<IMG, PREPD>
impl<IMG, PREPD> !UnwindSafe for DecoderBuilder<IMG, PREPD>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> SetParameter for T
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
T: Parameter<Self>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,