Enum qrcode::bits::ExtendedMode [] [src]

pub enum ExtendedMode {
    Eci,
    Data(Mode),
    Fnc1First,
    Fnc1Second,
    StructuredAppend,
}

An "extended" mode indicator, includes all indicators supported by QR code beyond those bearing data.

Variants

Eci

ECI mode indicator, to introduce an ECI designator.

Data(Mode)

The normal mode to introduce data.

Fnc1First

FNC-1 mode in the first position.

Fnc1Second

FNC-1 mode in the second position.

StructuredAppend

Structured append.

Trait Implementations

Derived Implementations

impl Clone for ExtendedMode
[src]

fn clone(&self) -> ExtendedMode

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for ExtendedMode
[src]