[][src]Struct queens_rock::Data

pub struct Data {
    pub version: u8,
    pub ecc_level: EccLevel,
    pub mask: usize,
    pub eci: Option<usize>,
    pub payloads: Vec<Payload>,
}

QR payload

Fields

version: u8ecc_level: EccLevelmask: usizeeci: Option<usize>payloads: Vec<Payload>

Array of payload datas extracted from QR

Methods

impl Data[src]

pub fn try_string(&self) -> Result<String, Error>[src]

Try to convert all payloads to String and concatenate then

Trait Implementations

impl Debug for Data[src]

Auto Trait Implementations

impl Unpin for Data

impl Send for Data

impl Sync for Data

impl UnwindSafe for Data

impl RefUnwindSafe for Data

Blanket Implementations

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.

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

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

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