[][src]Enum barcoders::sym::ean_supp::EANSUPP

pub enum EANSUPP {
    EAN2(Vec<u8>),
    EAN5(Vec<u8>),
}

The Supplemental EAN barcode type.

Variants

EAN2(Vec<u8>)

EAN-2 supplemental barcode type.

EAN5(Vec<u8>)

EAN-5 supplemental barcode type.

Methods

impl EANSUPP[src]

pub fn new<T: AsRef<str>>(data: T) -> Result<EANSUPP>[src]

Creates a new barcode. Returns Result<EANSUPP, Error> indicating parse success. Either a EAN2 or EAN5 variant will be returned depending on the length of data.

pub fn encode(&self) -> Vec<u8>[src]

Encodes the barcode. Returns a Vec of binary digits.

Trait Implementations

impl Debug for EANSUPP[src]

Auto Trait Implementations

impl Send for EANSUPP

impl Sync for EANSUPP

impl Unpin for EANSUPP

impl UnwindSafe for EANSUPP

impl RefUnwindSafe for EANSUPP

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]