[][src]Struct qrcode53bytes::version::Version

pub struct Version(pub usize);

QR code version, defines the size

Implementations

impl Version[src]

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

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

pub fn capacity(&self) -> 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 Clone for Version[src]

impl Copy for Version[src]

impl Debug for Version[src]

impl Eq for Version[src]

impl PartialEq<Version> for Version[src]

impl StructuralEq for Version[src]

impl StructuralPartialEq for Version[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.