[][src]Struct qrcode53bytes::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.

Implementations

impl Qr[src]

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

Create a new QR from a string.

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

Returns the size of the QR code.

Trait Implementations

impl Debug for Qr[src]

impl Eq for Qr[src]

impl PartialEq<Qr> for Qr[src]

impl StructuralEq for Qr[src]

impl StructuralPartialEq for Qr[src]

Auto Trait Implementations

impl RefUnwindSafe for Qr

impl Send for Qr

impl Sync for Qr

impl Unpin for Qr

impl UnwindSafe for Qr

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[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 = 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.