[][src]Enum barcoders::sym::tf::TF

pub enum TF {
    Standard(Vec<u8>),
    Interleaved(Vec<u8>),
}

The 2-of-5 barcode type.

Variants

Standard(Vec<u8>)

The standard 2-of-5 barcode type.

Interleaved(Vec<u8>)

The interleaved 2-of-5 barcode type.

Methods

impl TF[src]

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

Creates a new ITF barcode. If the length of the given data is odd, a checksum value will be computed and appended to the data for encoding.

Returns Result<TF::Interleaved, Error> indicating parse success.

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

Creates a new STF barcode.

Returns Result<TF::Standard, Error> indicating parse success.

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

Encodes the barcode. Returns a Vec of binary digits.

Trait Implementations

impl Debug for TF[src]

Auto Trait Implementations

impl Send for TF

impl Sync for TF

impl Unpin for TF

impl UnwindSafe for TF

impl RefUnwindSafe for TF

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]