pub enum Barcode {
Interleaved2of5(String),
EAN13(String),
Code128(String),
Code39(String),
QR(Vec<String>),
MicroQR(Vec<String>),
DotMatrix(Vec<String>),
}Expand description
scanned barcode
Variants§
Interleaved2of5(String)
Interleaved 2of5, single line of digits
EAN13(String)
International Article Number - EAN13, single line of digits
Code128(String)
Code 128, single line of alphanumeric characters
Code39(String)
Code 39, single line of alphanumeric characters
QR(Vec<String>)
QR code, multiple lines of alphanumeric characters
MicroQR(Vec<String>)
mini QR code, multiple lines of alphanumeric characters
DotMatrix(Vec<String>)
Dot Matrix code, multiple lines of alphanumeric characters
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Barcode
impl RefUnwindSafe for Barcode
impl Send for Barcode
impl Sync for Barcode
impl Unpin for Barcode
impl UnwindSafe for Barcode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more