Struct qrcodegen::BitBuffer[][src]

pub struct BitBuffer(pub Vec<bool>);

An appendable sequence of bits (0s and 1s).

Mainly used by QrSegment.

Methods

impl BitBuffer
[src]

Appends the given number of low-order bits of the given value to this buffer.

Requires len ≤ 31 and val < 2len.

Auto Trait Implementations

impl Send for BitBuffer

impl Sync for BitBuffer