[][src]Struct gs1::GTIN

pub struct GTIN {
    pub company: u64,
    pub company_digits: usize,
    pub item: u64,
    pub indicator: u8,
}

Global Trade Item Number

This is the most-used GS1 identifier, and is a superset of UPC, EAN, and ISBN codes.

GS1 General Specifications Section 3.3.2

Fields

company: u64

Company identifier

company_digits: usize

Number of digits in the decimal representation of the company identifier

item: u64

Item (product) identifier

indicator: u8

Indicator digit in case of GTIN-14, otherwise zero

Trait Implementations

impl GS1 for GTIN[src]

impl PartialEq<GTIN> for GTIN[src]

impl Debug for GTIN[src]

Auto Trait Implementations

impl Send for GTIN

impl Sync for GTIN

impl Unpin for GTIN

impl UnwindSafe for GTIN

impl RefUnwindSafe for GTIN

Blanket Implementations

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

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

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

type Error = Infallible

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]