[][src]Enum qrcode53bytes::ec::ECLevel

pub enum ECLevel {
    L,
}

Error correction level.

Variants

L

Recovers 7% of data

Implementations

impl ECLevel[src]

pub fn to_bitvec(&self) -> BitVec<Lsb0, u8>[src]

Returns the bit encoding. It is not the same as the enum order.

Trait Implementations

impl Clone for ECLevel[src]

impl Copy for ECLevel[src]

impl Debug for ECLevel[src]

impl Eq for ECLevel[src]

impl PartialEq<ECLevel> for ECLevel[src]

impl StructuralEq for ECLevel[src]

impl StructuralPartialEq for ECLevel[src]

Auto Trait Implementations

impl RefUnwindSafe for ECLevel

impl Send for ECLevel

impl Sync for ECLevel

impl Unpin for ECLevel

impl UnwindSafe for ECLevel

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.