Struct iced_glow::widget::qr_code::State[][src]

pub struct State { /* fields omitted */ }
This is supported on crate feature qr_code only.

The state of a QRCode.

It stores the data that will be displayed.

Implementations

impl State[src]

pub fn new(data: impl AsRef<[u8]>) -> Result<State, Error>[src]

Creates a new State with the provided data.

This method uses an ErrorCorrection::Medium and chooses the smallest size to display the data.

pub fn with_error_correction(
    data: impl AsRef<[u8]>,
    error_correction: ErrorCorrection
) -> Result<State, Error>
[src]

Creates a new State with the provided ErrorCorrection.

pub fn with_version(
    data: impl AsRef<[u8]>,
    version: Version,
    error_correction: ErrorCorrection
) -> Result<State, Error>
[src]

Creates a new State with the provided Version and ErrorCorrection.

Trait Implementations

impl Debug for State[src]

Auto Trait Implementations

impl !RefUnwindSafe for State

impl Send for State

impl !Sync for State

impl Unpin for State

impl UnwindSafe for State

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> Pointable for T

type Init = T

The type for initializers.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,