[][src]Trait ccitt_t4_t6::g42d::decode::Store

pub trait Store {
    type Row: ColorLine;
    pub fn new() -> Self;
pub fn new_row(width: usize) -> Self::Row;
pub fn extend(&mut self, row: &Self::Row); }

This struct can store a bitmap

Associated Types

type Row: ColorLine[src]

The type of scanline

Loading content...

Required methods

pub fn new() -> Self[src]

Create a new struct

pub fn new_row(width: usize) -> Self::Row[src]

Create the next row

pub fn extend(&mut self, row: &Self::Row)[src]

Add a row to the bitmap

Loading content...

Implementations on Foreign Types

impl Store for Vec<Color>[src]

type Row = Vec<Color>

Loading content...

Implementors

impl Store for BitWriter[src]

type Row = Vec<Color>

Loading content...