pub struct DotMatrix { /* private fields */ }Expand description
A sparse 2D dot grid: rows × columns cells where true means a
dot is present at that position. Only odd-parity positions
((x + y) % 2 == 1) ever carry true cells from a DotCode encoder;
the renderer treats all true cells uniformly.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DotMatrix
impl RefUnwindSafe for DotMatrix
impl Send for DotMatrix
impl Sync for DotMatrix
impl Unpin for DotMatrix
impl UnsafeUnpin for DotMatrix
impl UnwindSafe for DotMatrix
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more