[][src]Struct rqr::version::Version

pub struct Version(pub usize);

QR code version, defines the size

Methods

impl Version[src]

pub fn new(v: usize) -> Version[src]

Create a new version, must be in the [1..40] range.

pub fn minimal(s: &str, mode: Mode, e: ECLevel) -> Option<Version>[src]

Calculate the minimal required version to hold the string in the given mode with the required error correction level.

pub fn capacity(&self, mode: Mode, e: ECLevel) -> usize[src]

Return the data capacity.

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

Return the size of the QR code.

pub fn char_count_len(&self, mode: Mode) -> usize[src]

Returns the required len of the char count bit representation.

pub fn extra_version_areas(&self) -> bool[src]

Returns true if this version requires extra version areas.

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

Returns the position of the dark module.

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

Return the version value - 1, suitable for indexing.

Trait Implementations

impl Eq for Version[src]

impl Copy for Version[src]

impl PartialEq<Version> for Version[src]

impl Clone for Version[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Version[src]

Auto Trait Implementations

impl Send for Version

impl Sync for Version

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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.