pub enum BarcodeFormat {
Qr,
DataMatrix,
Code128,
Code39,
Ean13,
Ean8,
UpcA,
Pdf417,
}Expand description
Barcode format.
Variants§
Qr
QR Code.
DataMatrix
Data Matrix.
Code128
Code 128.
Code39
Code 39.
Ean13
EAN-13.
Ean8
EAN-8.
UpcA
UPC-A.
Pdf417
PDF417.
Trait Implementations§
Source§impl Clone for BarcodeFormat
impl Clone for BarcodeFormat
Source§fn clone(&self) -> BarcodeFormat
fn clone(&self) -> BarcodeFormat
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BarcodeFormat
impl Debug for BarcodeFormat
Source§impl<'de> Deserialize<'de> for BarcodeFormat
impl<'de> Deserialize<'de> for BarcodeFormat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BarcodeFormat
impl PartialEq for BarcodeFormat
Source§impl Serialize for BarcodeFormat
impl Serialize for BarcodeFormat
impl Copy for BarcodeFormat
impl Eq for BarcodeFormat
impl StructuralPartialEq for BarcodeFormat
Auto Trait Implementations§
impl Freeze for BarcodeFormat
impl RefUnwindSafe for BarcodeFormat
impl Send for BarcodeFormat
impl Sync for BarcodeFormat
impl Unpin for BarcodeFormat
impl UnsafeUnpin for BarcodeFormat
impl UnwindSafe for BarcodeFormat
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.