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 mode indicator, to introduce an ECI designator.

The normal mode to introduce data.

FNC-1 mode in the first position.

FNC-1 mode in the second position.

Structured append.

Trait Implementations

impl Copy for ExtendedMode
[src]

impl Clone for ExtendedMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations