pub enum BarcodeFormat {
PkBarcodeFormatAztec,
PkBarcodeFormatCode128,
PkBarcodeFormatPdf417,
PkBarcodeFormatQr,
}Expand description
Barcode format. PKBarcodeFormatCode128 may only be used for dictionaries in the barcodes array.
Variants§
PkBarcodeFormatAztec
Barcode fromat PKBarcodeFormatAztec
PkBarcodeFormatCode128
Barcode fromat PKBarcodeFormatCode128
PkBarcodeFormatPdf417
Barcode fromat PKBarcodeFormatPDF417
PkBarcodeFormatQr
Barcode fromat PKBarcodeFormatQR
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 (const: unstable) · 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
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