[][src]Struct rqr::qr::Qr

pub struct Qr {
    pub version: Version,
    pub ecl: ECLevel,
    pub mode: Mode,
    pub matrix: Matrix,
    pub mask: Mask,
}

The QR code.

Encapsulates a matrix, the 2D-grid containing the QR modules and some information about the QR code.

Fields

version: Version

Version of the QR code.

ecl: ECLevel

Error correction level.

mode: Mode

Encoding mode.

matrix: Matrix

The modules.

mask: Mask

The applied mask, 0 to 7.

Methods

impl Qr[src]

pub fn new(s: &str) -> Result<Qr, Error>[src]

Create a new QR from a string.

pub fn with_ecl(s: &str, ecl: ECLevel) -> Result<Qr, Error>[src]

Create a new QR with specified error correction.

pub fn with_version(s: &str, v: Version) -> Result<Qr, Error>[src]

Create a new QR with a specified version.

pub fn size(&self) -> usize[src]

Returns the size of the QR code.

Trait Implementations

impl Eq for Qr[src]

impl PartialEq<Qr> for Qr[src]

impl Debug for Qr[src]

Auto Trait Implementations

impl Send for Qr

impl Sync for Qr

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.