[][src]Struct barcode_command::barcode::code39::Code39

pub struct Code39 {
    pub barcode_properties: BarcodeProperties,
    pub code39_vec: Vec<char>,
}

Fields

barcode_properties: BarcodePropertiescode39_vec: Vec<char>

Methods

impl Code39[src]

pub fn new(input: &String, check_digit: i32) -> Code39[src]

Trait Implementations

Auto Trait Implementations

impl RefUnwindSafe for Code39

impl Send for Code39

impl Sync for Code39

impl Unpin for Code39

impl UnwindSafe for Code39

Blanket Implementations

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

impl<T> Barcode for T where
    T: Barcode1D
[src]

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

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

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.